Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit 645ec5f

Browse files
Bernat JufréBernat Jufré
authored andcommitted
Change some minor comments and details
1 parent 2ccfc42 commit 645ec5f

12 files changed

+46
-0
lines changed

src/Commands/ModelDeleteCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@
1010
use Symfony\Component\Console\Command\Command as SymfonyCommand;
1111
use Symfony\Component\Console\Input\InputArgument;
1212

13+
1314
/**
1415
* Class ModelDeleteCommand
16+
*
17+
* @author Bernat Jufré <[email protected]>
18+
*
1519
* @package Lucid\Console\Commands
1620
*/
1721
class ModelDeleteCommand extends SymfonyCommand

src/Commands/ModelMakeCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
/**
1515
* Class ModelMakeCommand
16+
*
17+
* @author Bernat Jufré <[email protected]>
18+
*
1619
* @package Lucid\Console\Commands
1720
*/
1821
class ModelMakeCommand extends SymfonyCommand

src/Commands/PolicyDeleteCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@
1010
use Symfony\Component\Console\Command\Command as SymfonyCommand;
1111
use Symfony\Component\Console\Input\InputArgument;
1212

13+
1314
/**
1415
* Class PolicyDeleteCommand
16+
*
17+
* @author Bernat Jufré <[email protected]>
18+
*
1519
* @package Lucid\Console\Commands
1620
*/
1721
class PolicyDeleteCommand extends SymfonyCommand

src/Commands/PolicyMakeCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@
1010
use Symfony\Component\Console\Command\Command as SymfonyCommand;
1111
use Symfony\Component\Console\Input\InputArgument;
1212

13+
1314
/**
1415
* Class PolicyMakeCommand
16+
*
17+
* @author Bernat Jufré <[email protected]>
18+
*
1519
* @package Lucid\Console\Commands
1620
*/
1721
class PolicyMakeCommand extends SymfonyCommand

src/Commands/RequestDeleteCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@
1010
use Symfony\Component\Console\Command\Command as SymfonyCommand;
1111
use Symfony\Component\Console\Input\InputArgument;
1212

13+
1314
/**
1415
* Class RequestDeleteCommand
16+
*
17+
* @author Bernat Jufré <[email protected]>
18+
*
1519
* @package Lucid\Console\Commands
1620
*/
1721
class RequestDeleteCommand extends SymfonyCommand

src/Commands/RequestMakeCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@
1010
use Symfony\Component\Console\Command\Command as SymfonyCommand;
1111
use Symfony\Component\Console\Input\InputArgument;
1212

13+
1314
/**
1415
* Class RequestMakeCommand
16+
*
17+
* @author Bernat Jufré <[email protected]>
18+
*
1519
* @package Lucid\Console\Commands
1620
*/
1721
class RequestMakeCommand extends SymfonyCommand

src/Components/Model.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
/**
77
* Class Model
8+
*
9+
* @author Bernat Jufré <[email protected]>
10+
*
811
* @package Lucid\Console\Components
912
*/
1013
class Model extends Component

src/Components/Policy.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
namespace Lucid\Console\Components;
44

5+
56
/**
67
* Class Policy
8+
*
9+
* @author Bernat Jufré <[email protected]>
10+
*
711
* @package Lucid\Console\Components
812
*/
913
class Policy extends Component

src/Components/Request.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33

44
namespace Lucid\Console\Components;
55

6+
67
/**
78
* Class Request
9+
*
10+
* @author Bernat Jufré <[email protected]>
11+
*
812
* @package Lucid\Console\Components
913
*/
1014
class Request extends Component

src/Generators/ModelGenerator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@
66
use Lucid\Console\Str;
77
use Lucid\Console\Components\Model;
88

9+
910
/**
1011
* Class ModelGenerator
12+
*
13+
* @author Bernat Jufré <[email protected]>
14+
*
1115
* @package Lucid\Console\Generators
1216
*/
1317
class ModelGenerator extends Generator

0 commit comments

Comments
 (0)