Skip to content

Commit

Permalink
Fix: Remove redundant overrides in classes extending GeneratorCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
saMahmoudzadeh committed Apr 1, 2024
1 parent c215697 commit b75dc77
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 33 deletions.
11 changes: 0 additions & 11 deletions src/Illuminate/Foundation/Console/ClassMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,6 @@ protected function resolveStubPath($stub)
: __DIR__.$stub;
}

/**
* Get the default namespace for the class.
*
* @param string $rootNamespace
* @return string
*/
protected function getDefaultNamespace($rootNamespace)
{
return $rootNamespace;
}

/**
* Get the console command arguments.
*
Expand Down
11 changes: 0 additions & 11 deletions src/Illuminate/Foundation/Console/InterfaceMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,6 @@ protected function getStub()
return __DIR__.'/stubs/interface.stub';
}

/**
* Get the default namespace for the class.
*
* @param string $rootNamespace
* @return string
*/
protected function getDefaultNamespace($rootNamespace)
{
return $rootNamespace;
}

/**
* Get the console command arguments.
*
Expand Down
11 changes: 0 additions & 11 deletions src/Illuminate/Foundation/Console/TraitMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,6 @@ protected function resolveStubPath($stub)
: __DIR__.$stub;
}

/**
* Get the default namespace for the class.
*
* @param string $rootNamespace
* @return string
*/
protected function getDefaultNamespace($rootNamespace)
{
return $rootNamespace;
}

/**
* Get the console command arguments.
*
Expand Down

0 comments on commit b75dc77

Please sign in to comment.