Skip to content

Commit 80d303f

Browse files
committed
Remove Unnecessary Constructors
1 parent 3760681 commit 80d303f

File tree

8 files changed

+0
-80
lines changed

8 files changed

+0
-80
lines changed

src/Commands/MakeAll.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,6 @@ class MakeAll extends Command
2424
*/
2525
protected $description = 'Create all classes necessary for repository.';
2626

27-
/**
28-
* Create a new command instance.
29-
*
30-
* @return void
31-
*/
32-
public function __construct()
33-
{
34-
parent::__construct();
35-
}
36-
3727
/**
3828
* Execute the console command.
3929
*/

src/Commands/MakeEntity.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ class MakeEntity extends Command
2525
*/
2626
protected $description = 'Create a new entity.';
2727

28-
/**
29-
* Create a new command instance.
30-
*
31-
* @return void
32-
*/
33-
public function __construct()
34-
{
35-
parent::__construct();
36-
}
37-
3828
use CustomMySqlQueries;
3929

4030
/**

src/Commands/MakeFactory.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,6 @@ class MakeFactory extends Command
2424
*/
2525
protected $description = 'Create a new factory.';
2626

27-
/**
28-
* Create a new command instance.
29-
*
30-
* @return void
31-
*/
32-
public function __construct()
33-
{
34-
parent::__construct();
35-
}
36-
3727
use CustomMySqlQueries;
3828

3929
/**

src/Commands/MakeInterfaceRepository.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ class MakeInterfaceRepository extends Command
2525
*/
2626
protected $description = 'Create a new interface for repository';
2727

28-
/**
29-
* Create a new command instance.
30-
*
31-
* @return void
32-
*/
33-
public function __construct()
34-
{
35-
parent::__construct();
36-
}
37-
3828
use CustomMySqlQueries;
3929

4030
/**

src/Commands/MakeMySqlRepository.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ class MakeMySqlRepository extends Command
2525
*/
2626
protected $description = 'Create a new MySql repository class';
2727

28-
/**
29-
* Create a new command instance.
30-
*
31-
* @return void
32-
*/
33-
public function __construct()
34-
{
35-
parent::__construct();
36-
}
37-
3828
use CustomMySqlQueries;
3929

4030
/**

src/Commands/MakeRedisRepository.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ class MakeRedisRepository extends Command
2525
*/
2626
protected $description = 'Create a new Redis repository class';
2727

28-
/**
29-
* Create a new command instance.
30-
*
31-
* @return void
32-
*/
33-
public function __construct()
34-
{
35-
parent::__construct();
36-
}
37-
3828
use CustomMySqlQueries;
3929

4030
/**

src/Commands/MakeRepository.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,6 @@ class MakeRepository extends Command
2323
*/
2424
protected $description = 'Create a new repository';
2525

26-
/**
27-
* Create a new command instance.
28-
*
29-
* @return void
30-
*/
31-
public function __construct()
32-
{
33-
parent::__construct();
34-
}
35-
3626
/**
3727
* Execute the console command.
3828
*

src/Commands/MakeResource.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ class MakeResource extends Command
2525
*/
2626
protected $description = 'Create new resource';
2727

28-
/**
29-
* Create a new command instance.
30-
*
31-
* @return void
32-
*/
33-
public function __construct()
34-
{
35-
parent::__construct();
36-
}
37-
3828
use CustomMySqlQueries;
3929

4030
/**

0 commit comments

Comments
 (0)