Skip to content

Commit

Permalink
Add static to all methods in Module facade
Browse files Browse the repository at this point in the history
  • Loading branch information
azim-kordpour committed Dec 4, 2023
1 parent 2ef478a commit 57a1a66
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions src/Facades/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@
use Illuminate\Support\Facades\Facade;

/**
* @method array all()
* @method array getCached()
* @method array scan()
* @method \Nwidart\Modules\Collection toCollection()
* @method array getScanPaths()
* @method array allEnabled()
* @method array allDisabled()
* @method int count()
* @method array getOrdered($direction = 'asc')
* @method array getByStatus($status)
* @method \Nwidart\Modules\Module find(string $name)
* @method \Nwidart\Modules\Module findOrFail(string $name)
* @method string getModulePath($moduleName)
* @method \Illuminate\Filesystem\Filesystem getFiles()
* @method mixed config(string $key, $default = NULL)
* @method string getPath()
* @method void boot()
* @method void register(): void
* @method string assetPath(string $module)
* @method bool delete(string $module)
* @method bool isEnabled(string $name)
* @method bool isDisabled(string $name)
* @method static array all()
* @method static array getCached()
* @method static array scan()
* @method static \Nwidart\Modules\Collection toCollection()
* @method static array getScanPaths()
* @method static array allEnabled()
* @method static array allDisabled()
* @method static int count()
* @method static array getOrdered($direction = 'asc')
* @method static array getByStatus($status)
* @method static \Nwidart\Modules\Module find(string $name)
* @method static \Nwidart\Modules\Module findOrFail(string $name)
* @method static string getModulePath($moduleName)
* @method static \Illuminate\Filesystem\Filesystem getFiles()
* @method static mixed config(string $key, $default = NULL)
* @method static string getPath()
* @method static void boot()
* @method static void register(): void
* @method static string assetPath(string $module)
* @method static bool delete(string $module)
* @method static bool isEnabled(string $name)
* @method static bool isDisabled(string $name)
*/
class Module extends Facade
{
Expand Down

0 comments on commit 57a1a66

Please sign in to comment.