Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Platform
Commits
d4afc387
Unverified
Commit
d4afc387
authored
Sep 02, 2017
by
Nicolas Widart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Using handle method name for laravel 5.5
parent
b659b702
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
DeleteModuleCommand.php
Modules/Core/Console/DeleteModuleCommand.php
+1
-1
DownloadModuleCommand.php
Modules/Core/Console/DownloadModuleCommand.php
+1
-1
InstallCommand.php
Modules/Core/Console/InstallCommand.php
+1
-1
PublishModuleAssetsCommand.php
Modules/Core/Console/PublishModuleAssetsCommand.php
+1
-1
PublishThemeAssetsCommand.php
Modules/Core/Console/PublishThemeAssetsCommand.php
+1
-1
No files found.
Modules/Core/Console/DeleteModuleCommand.php
View file @
d4afc387
...
...
@@ -40,7 +40,7 @@ class DeleteModuleCommand extends Command
*
* @return mixed
*/
public
function
fir
e
()
public
function
handl
e
()
{
$module
=
$this
->
argument
(
'module'
);
...
...
Modules/Core/Console/DownloadModuleCommand.php
View file @
d4afc387
...
...
@@ -29,7 +29,7 @@ class DownloadModuleCommand extends Command
* @return mixed
* @throws \Symfony\Component\Process\Exception\LogicException
*/
public
function
fir
e
()
public
function
handl
e
()
{
$downloader
=
new
Downloader
(
$this
->
getOutput
());
try
{
...
...
Modules/Core/Console/InstallCommand.php
View file @
d4afc387
...
...
@@ -51,7 +51,7 @@ class InstallCommand extends Command
*
* @return mixed
*/
public
function
fir
e
()
public
function
handl
e
()
{
$this
->
blockMessage
(
'Welcome!'
,
'Starting the installation process...'
,
'comment'
);
...
...
Modules/Core/Console/PublishModuleAssetsCommand.php
View file @
d4afc387
...
...
@@ -10,7 +10,7 @@ class PublishModuleAssetsCommand extends Command
protected
$name
=
'asgard:publish:module'
;
protected
$description
=
'Publish module assets'
;
public
function
fir
e
()
public
function
handl
e
()
{
$this
->
call
(
'module:publish'
,
[
'module'
=>
$this
->
argument
(
'module'
)]);
}
...
...
Modules/Core/Console/PublishThemeAssetsCommand.php
View file @
d4afc387
...
...
@@ -10,7 +10,7 @@ class PublishThemeAssetsCommand extends Command
protected
$name
=
'asgard:publish:theme'
;
protected
$description
=
'Publish theme assets'
;
public
function
fir
e
()
public
function
handl
e
()
{
$theme
=
$this
->
argument
(
'theme'
,
null
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment