evercode1 / trait-maker
Artisan Command To Create A Trait Stub
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 2 537
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- php: 5.6.*|~7.0
- illuminate/support: ~5.1
This package is not auto-updated.
Last update: 2024-02-03 23:29:23 UTC
README
TraitMaker creates an artisan command that lets you quickly create a trait folder and trait stub. If the folder already exists, you can use the command to place new traits in the exsiting folder.
Install
Via Composer
composer require evercode1/trait-maker
In your app/config/app.php file, add the following to the providers array:
Evercode1\TraitMaker\TraitMakerServiceProvider::class,
Usage
Once installed, you should see make:trait as one of the artisan commands when you run:
php artisan list
To use this command, supply it with two arguments, the first being the name of the trait, and the second being the name of the folder you want it to reside in. If the folder does not exist, it will be created for you.
For example:
php artisan make:trait SampleTrait TraitsFolder
This would create a directory named TraitsFolder in your app directory with a php file named SampleTrait.php, which would contain the following stub:
<?php
namespace App\TraitsFolder
trait SampleTrait
{
}
Please note, the package currently only supports trait folders that are in the app folder, for example:
app/MyTraits
It cannot be used to create the following location:
app/Http/Controllers/MyTraits
Change log
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email ikon321@yahoo.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.