This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFO | 2024-05-09T17:04:23Z-0300 | ...ocal/share/nvim/lazy/neotest/lua/neotest/config/init.lua:447 | Configuration complete | |
DEBUG | 2024-05-09T17:04:23Z-0300 | ...ocal/share/nvim/lazy/neotest/lua/neotest/config/init.lua:448 | User config { | |
adapters = { { | |
build_spec = <function 1>, | |
discover_positions = <function 2>, | |
filter_dir = <function 3>, | |
is_test_file = <function 4>, | |
name = "neotest-pest", | |
results = <function 5>, | |
root = <function 6>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local prefix = "<Leader>T" | |
return { | |
{ | |
"nvim-neotest/neotest", | |
lazy = true, | |
dependencies = { | |
"nvim-lua/plenary.nvim", | |
"nvim-neotest/nvim-nio", | |
"V13Axel/neotest-pest", | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Api\Modules\{{ ModuleName }}\Repositories; | |
use App\Api\Modules\{{ ModuleName }}\Repositories\{{ ModuleName }}RepositoryInterface; | |
use App\Api\Modules\{{ ModuleName }}\Models\{{ ModuleName }}Model; | |
use Illuminate\Support\Collection; | |
class {{ ModuleName }}Repository implements {{ ModuleName }}RepositoryInterface | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Api\Modules\{{ ModuleName }}\Interfaces; | |
use App\Core\Interfaces\RepositoryInterface; | |
use Illuminate\Support\Collection; | |
interface UserRepositoryInterface extends RepositoryInterface | |
{ | |
public function all(): Collection; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Api\Modules\{{ ModuleName }}\Routers; | |
use App\Api\Modules\{{ ModuleName }}\Controllers\{{ ModuleName }}Controller; | |
use App\Core\Interfaces\RouterInterface; | |
use Illuminate\Routing\Router; | |
class {{ ModuleName }}Router implements RouterInterface | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name":"Arch","icon":"wand","settings":"{\"settings\":\"{\\n \\\"workbench.colorTheme\\\": \\\"Catppuccin-Mocha\\\",\\n \\\"window.menuBarVisibility\\\": \\\"toggle\\\",\\n \\\"editor.fontSize\\\": 16,\\n \\\"editor.scrollbar.vertical\\\": \\\"hidden\\\",\\n \\\"editor.scrollbar.verticalScrollbarSize\\\": 0,\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"newWindow\\\",\\n \\\"security.workspace.trust.startupPrompt\\\": \\\"never\\\",\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"editor.minimap.side\\\": \\\"left\\\",\\n \\\"editor.fontFamily\\\": \\\"'Maple Mono', 'monospace', monospace\\\",\\n \\\"extensions.autoUpdate\\\": false,\\n \\\"workbench.statusBar.visible\\\": false,\\n \\\"terminal.external.linuxExec\\\": \\\"kitty\\\",\\n \\\"terminal.explorerKind\\\": \\\"both\\\",\\n \\\"terminal.sourceControlRepositoriesKind\\\": \\\"both\\\",\\n \\\"telemetry.telemetryLevel\\\": \\\"off\\\",\\n \\\"editor.fontLigatures\\\": true,\\n |