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
4df147c5
Unverified
Commit
4df147c5
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
d4afc387
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
RefreshThumbnailCommand.php
Modules/Media/Console/RefreshThumbnailCommand.php
+1
-1
BuildTranslationsCacheCommand.php
...les/Translation/Console/BuildTranslationsCacheCommand.php
+1
-1
EntityScaffoldCommand.php
Modules/Workshop/Console/EntityScaffoldCommand.php
+1
-1
ModuleScaffoldCommand.php
Modules/Workshop/Console/ModuleScaffoldCommand.php
+1
-1
ThemeScaffoldCommand.php
Modules/Workshop/Console/ThemeScaffoldCommand.php
+1
-1
UpdateModuleCommand.php
Modules/Workshop/Console/UpdateModuleCommand.php
+1
-1
No files found.
Modules/Media/Console/RefreshThumbnailCommand.php
View file @
4df147c5
...
@@ -28,7 +28,7 @@ class RefreshThumbnailCommand extends Command
...
@@ -28,7 +28,7 @@ class RefreshThumbnailCommand extends Command
*
*
* @return mixed
* @return mixed
*/
*/
public
function
fir
e
()
public
function
handl
e
()
{
{
$this
->
line
(
'Preparing to regenerate all thumbnails...'
);
$this
->
line
(
'Preparing to regenerate all thumbnails...'
);
...
...
Modules/Translation/Console/BuildTranslationsCacheCommand.php
View file @
4df147c5
...
@@ -23,7 +23,7 @@ class BuildTranslationsCacheCommand extends Command
...
@@ -23,7 +23,7 @@ class BuildTranslationsCacheCommand extends Command
$this
->
translation
=
$translation
;
$this
->
translation
=
$translation
;
}
}
public
function
fir
e
()
public
function
handl
e
()
{
{
foreach
(
$this
->
translation
->
all
()
as
$translation
)
{
foreach
(
$this
->
translation
->
all
()
as
$translation
)
{
foreach
(
config
(
'laravellocalization.supportedLocales'
)
as
$locale
=>
$language
)
{
foreach
(
config
(
'laravellocalization.supportedLocales'
)
as
$locale
=>
$language
)
{
...
...
Modules/Workshop/Console/EntityScaffoldCommand.php
View file @
4df147c5
...
@@ -22,7 +22,7 @@ final class EntityScaffoldCommand extends Command
...
@@ -22,7 +22,7 @@ final class EntityScaffoldCommand extends Command
$this
->
entityGenerator
=
$entityGenerator
;
$this
->
entityGenerator
=
$entityGenerator
;
}
}
public
function
fir
e
()
public
function
handl
e
()
{
{
$this
->
entityGenerator
$this
->
entityGenerator
->
forModule
(
$this
->
argument
(
'module'
))
->
forModule
(
$this
->
argument
(
'module'
))
...
...
Modules/Workshop/Console/ModuleScaffoldCommand.php
View file @
4df147c5
...
@@ -35,7 +35,7 @@ class ModuleScaffoldCommand extends Command
...
@@ -35,7 +35,7 @@ class ModuleScaffoldCommand extends Command
/**
/**
*
*
*/
*/
public
function
fir
e
()
public
function
handl
e
()
{
{
$moduleName
=
$this
->
ask
(
'Please enter the module name in the following format: vendor/name'
);
$moduleName
=
$this
->
ask
(
'Please enter the module name in the following format: vendor/name'
);
list
(
$vendor
,
$name
)
=
$this
->
separateVendorAndName
(
$moduleName
);
list
(
$vendor
,
$name
)
=
$this
->
separateVendorAndName
(
$moduleName
);
...
...
Modules/Workshop/Console/ThemeScaffoldCommand.php
View file @
4df147c5
...
@@ -20,7 +20,7 @@ class ThemeScaffoldCommand extends Command
...
@@ -20,7 +20,7 @@ class ThemeScaffoldCommand extends Command
$this
->
themeScaffold
=
$themeScaffold
;
$this
->
themeScaffold
=
$themeScaffold
;
}
}
public
function
fir
e
()
public
function
handl
e
()
{
{
$themeName
=
$this
->
ask
(
'Please enter the theme name in the following format: vendor/name'
);
$themeName
=
$this
->
ask
(
'Please enter the theme name in the following format: vendor/name'
);
list
(
$vendor
,
$name
)
=
$this
->
separateVendorAndName
(
$themeName
);
list
(
$vendor
,
$name
)
=
$this
->
separateVendorAndName
(
$themeName
);
...
...
Modules/Workshop/Console/UpdateModuleCommand.php
View file @
4df147c5
...
@@ -22,7 +22,7 @@ class UpdateModuleCommand extends Command
...
@@ -22,7 +22,7 @@ class UpdateModuleCommand extends Command
$this
->
composer
=
$composer
;
$this
->
composer
=
$composer
;
}
}
public
function
fir
e
()
public
function
handl
e
()
{
{
$packageName
=
$this
->
getModulePackageName
(
$this
->
argument
(
'module'
));
$packageName
=
$this
->
getModulePackageName
(
$this
->
argument
(
'module'
));
...
...
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