Skip to content

Commit c23be10

Browse files
committed
Merge pull request #67 from InfyOmLabs/analysis-XNAloL
Applied fixes from StyleCI
2 parents dfd4140 + b688ece commit c23be10

15 files changed

+23
-20
lines changed

src/Commands/PublishTemplateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function publishScaffoldTemplates()
5656

5757
$templatesPath = base_path('vendor/infyomlabs/'.$templateType.'/templates/scaffold');
5858

59-
return $this->publishDirectory($templatesPath, $this->templatesDir."/scaffold", 'infyom-generator-templates/scaffold', true);
59+
return $this->publishDirectory($templatesPath, $this->templatesDir.'/scaffold', 'infyom-generator-templates/scaffold', true);
6060
}
6161

6262
/**

src/Generators/API/APIControllerGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class APIControllerGenerator
1010
{
11-
/** @var CommandData */
11+
/** @var CommandData */
1212
private $commandData;
1313

1414
/** @var string */

src/Generators/API/APIRequestGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class APIRequestGenerator
1010
{
11-
/** @var CommandData */
11+
/** @var CommandData */
1212
private $commandData;
1313

1414
/** @var string */

src/Generators/API/APIRoutesGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class APIRoutesGenerator
99
{
10-
/** @var CommandData */
10+
/** @var CommandData */
1111
private $commandData;
1212

1313
/** @var string */

src/Generators/API/APITestGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class APITestGenerator
1010
{
11-
/** @var CommandData */
11+
/** @var CommandData */
1212
private $commandData;
1313

1414
/** @var string */

src/Generators/MigrationGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class MigrationGenerator
1111
{
12-
/** @var CommandData */
12+
/** @var CommandData */
1313
private $commandData;
1414

1515
/** @var string */

src/Generators/ModelGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class ModelGenerator
1111
{
12-
/** @var CommandData */
12+
/** @var CommandData */
1313
private $commandData;
1414

1515
/** @var string */

src/Generators/RepositoryGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class RepositoryGenerator
1010
{
11-
/** @var CommandData */
11+
/** @var CommandData */
1212
private $commandData;
1313

1414
/** @var string */

src/Generators/RepositoryTestGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
class RepositoryTestGenerator
1717
{
18-
/** @var CommandData */
18+
/** @var CommandData */
1919
private $commandData;
2020

2121
/** @var string */

src/Generators/Scaffold/ControllerGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class ControllerGenerator
1010
{
11-
/** @var CommandData */
11+
/** @var CommandData */
1212
private $commandData;
1313

1414
/** @var string */

0 commit comments

Comments
 (0)