diff --git a/Admin/Install/Comments.php b/Admin/Install/Comments.php index a9af042..589baef 100755 --- a/Admin/Install/Comments.php +++ b/Admin/Install/Comments.php @@ -31,14 +31,14 @@ class Comments /** * Install comment relation * - * @param string $path Module path * @param ApplicationAbstract $app Application + * @param string $path Module path * * @return void * * @since 1.0.0 */ - public static function install(string $path, ApplicationAbstract $app) : void + public static function install(ApplicationAbstract $app, string $path) : void { $builder = new Builder($app->dbPool->get('schema')); $builder->alterTable('news') diff --git a/Admin/Install/Dashboard.php b/Admin/Install/Dashboard.php index 9f83376..8f470ed 100644 --- a/Admin/Install/Dashboard.php +++ b/Admin/Install/Dashboard.php @@ -29,14 +29,14 @@ class Dashboard /** * Install dashboard providing * - * @param string $path Module path * @param ApplicationAbstract $app Application + * @param string $path Module path * * @return void * * @since 1.0.0 */ - public static function install(string $path, ApplicationAbstract $app) : void + public static function install(ApplicationAbstract $app, string $path) : void { \Modules\Dashboard\Admin\Installer::installExternal($app, ['path' => __DIR__ . '/Dashboard.install.json']); } diff --git a/Admin/Install/Media.php b/Admin/Install/Media.php index 7772e94..ce79503 100755 --- a/Admin/Install/Media.php +++ b/Admin/Install/Media.php @@ -29,14 +29,14 @@ class Media /** * Install media providing * - * @param string $path Module path * @param ApplicationAbstract $app Application + * @param string $path Module path * * @return void * * @since 1.0.0 */ - public static function install(string $path, ApplicationAbstract $app) : void + public static function install(ApplicationAbstract $app, string $path) : void { \Modules\Media\Admin\Installer::installExternal($app, ['path' => __DIR__ . '/Media.install.json']); }