We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a person try to create Model, Enum etc for a Domain that not works!
php artisan beyond:make:enum Users/UserStatusEnum ┌ On which domain do you want to add your Enum ────────────────┐ │ Users │ └──────────────────────────────────────────────────────────────┘ Error Typed property AkrilliA\LaravelBeyond\NameResolver::$directory must not be accessed before initialization at vendor/akrillia/laravel-beyond/src/NameResolver.php:90 86▕ $this->namespace = sprintf( 87▕ $this->command->getNamespaceTemplate().'%s', 88▕ $this->appOrDomain, 89▕ $this->command->getType()->getNamespace(), ➜ 90▕ $this->directory ? '\\'.$this->directory : '', 91▕ ); 92▕ 93▕ $this->path = sprintf( 94▕ '%s/'.$this->command->getFileNameTemplate(), +15 vendor frames 16 artisan:35 Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
When u make php artisan beyond:make:model Users/User may not work, when u try php artisan beyond:make:model Users.User it works!
php artisan beyond:make:model Users/User
php artisan beyond:make:model Users.User
The text was updated successfully, but these errors were encountered:
We‘ll investigate asap, thanks for reporting!
Sorry, something went wrong.
db72f1e
Fixed in v7.0.0-beta.8
No branches or pull requests
When a person try to create Model, Enum etc for a Domain that not works!
When u make
php artisan beyond:make:model Users/User
may not work, when u tryphp artisan beyond:make:model Users.User
it works!The text was updated successfully, but these errors were encountered: