@@ -14,10 +14,10 @@ discard block |
||
14 | 14 | $I->seeInThisFile('protected $fillable = ["name", "descr", "due", "project_id", "user_id"];'); |
15 | 15 | $I->seeInThisFile('protected $dates = ["due"];'); |
16 | 16 | $I->seeInThisFile( |
17 | -"public static \$rules = [\n". |
|
17 | +"public static \$rules = [\n" . |
|
18 | 18 | " \"name\" => \"requied\"," . PHP_EOL . |
19 | 19 | " \"project_id\" => \"required|numeric\"," . PHP_EOL . |
20 | -" \"user_id\" => \"required|numeric\",\n". |
|
20 | +" \"user_id\" => \"required|numeric\",\n" . |
|
21 | 21 | " ];"); |
22 | 22 | $I->seeInThisFile( |
23 | 23 | ' public function tags() |
@@ -47,19 +47,19 @@ discard block |
||
47 | 47 | $I->openFile('./database/migrations/create_task_categories.php'); |
48 | 48 | |
49 | 49 | $I->seeInThisFile('class CreateTaskCategoriesTable extends Migration'); |
50 | -$I->seeInThisFile("Schema::create('task_categories', function(Blueprint \$table) {\n". |
|
51 | -" \$table->increments('id');\n". |
|
50 | +$I->seeInThisFile("Schema::create('task_categories', function(Blueprint \$table) {\n" . |
|
51 | +" \$table->increments('id');\n" . |
|
52 | 52 | " \$table->string('name')->unique();" . PHP_EOL . |
53 | 53 | " \$table->text('descr')->nullable();" . PHP_EOL . |
54 | 54 | " \$table->timestamp('due');" . PHP_EOL . |
55 | -" \$table->integer('project_id')->unsigned();" . PHP_EOL. |
|
55 | +" \$table->integer('project_id')->unsigned();" . PHP_EOL . |
|
56 | 56 | " \$table->integer('user_id')->unsigned();\n" . |
57 | -" \$table->foreign('project_id')\n". |
|
58 | -" ->references('id')\n". |
|
57 | +" \$table->foreign('project_id')\n" . |
|
58 | +" ->references('id')\n" . |
|
59 | 59 | " ->on('projects');" . PHP_EOL . |
60 | -" \$table->foreign('user_id')\n". |
|
61 | -" ->references('id')\n". |
|
62 | -" ->on('users');\n". |
|
60 | +" \$table->foreign('user_id')\n" . |
|
61 | +" ->references('id')\n" . |
|
62 | +" ->on('users');\n" . |
|
63 | 63 | " \$table->timestamps();"); |
64 | 64 | |
65 | 65 | $I->deleteFile('./database/migrations/create_task_categories.php'); |
@@ -101,14 +101,14 @@ |
||
101 | 101 | $I->seeFileFound('./database/migrations/create_tasks.php'); |
102 | 102 | $I->openFile('./database/migrations/create_tasks.php'); |
103 | 103 | $I->seeInThisFile( |
104 | -"\$table->foreign('category_type_id')\n". |
|
105 | -" ->references('id')\n". |
|
104 | +"\$table->foreign('category_type_id')\n" . |
|
105 | +" ->references('id')\n" . |
|
106 | 106 | " ->on('category_types');" |
107 | 107 | ); |
108 | 108 | $I->seeInThisFile( |
109 | -"\$table->foreign('user_id')\n". |
|
110 | -" ->references('identifier')\n". |
|
111 | -" ->on('members')". PHP_EOL . |
|
109 | +"\$table->foreign('user_id')\n" . |
|
110 | +" ->references('identifier')\n" . |
|
111 | +" ->on('members')" . PHP_EOL . |
|
112 | 112 | " ->onDelete('cascade');"); |
113 | 113 | $I->deleteFile('./database/migrations/create_tasks.php'); |
114 | 114 |
@@ -11,7 +11,7 @@ |
||
11 | 11 | | |
12 | 12 | */ |
13 | 13 | |
14 | -$factory->define(App\User::class, function ($faker) { |
|
14 | +$factory->define(App\User::class, function($faker) { |
|
15 | 15 | return [ |
16 | 16 | 'name' => $faker->name, |
17 | 17 | 'email' => $faker->email, |
@@ -5,8 +5,8 @@ |
||
5 | 5 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the |
6 | 6 | // built-in PHP web server. This provides a convenient way to test a Lumen |
7 | 7 | // application without having installed a "real" server software here. |
8 | -if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { |
|
8 | +if ($uri !== '/' && file_exists(__DIR__ . '/public' . $uri)) { |
|
9 | 9 | return false; |
10 | 10 | } |
11 | 11 | |
12 | -require_once __DIR__.'/public/index.php'; |
|
12 | +require_once __DIR__ . '/public/index.php'; |
@@ -11,6 +11,6 @@ |
||
11 | 11 | | |
12 | 12 | */ |
13 | 13 | |
14 | -$app->get("/", function () use ($app) { |
|
14 | +$app->get("/", function() use ($app) { |
|
15 | 15 | return $app->welcome(); |
16 | 16 | }); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | | |
12 | 12 | */ |
13 | 13 | |
14 | -$app = require __DIR__.'/../bootstrap/app.php'; |
|
14 | +$app = require __DIR__ . '/../bootstrap/app.php'; |
|
15 | 15 | |
16 | 16 | /* |
17 | 17 | |-------------------------------------------------------------------------- |
@@ -3,41 +3,41 @@ |
||
3 | 3 | |
4 | 4 | class ArgumentFormat { |
5 | 5 | |
6 | - /** |
|
7 | - * Argument name |
|
8 | - * |
|
9 | - * @var string |
|
10 | - */ |
|
11 | - public $name; |
|
6 | + /** |
|
7 | + * Argument name |
|
8 | + * |
|
9 | + * @var string |
|
10 | + */ |
|
11 | + public $name; |
|
12 | 12 | |
13 | - /** |
|
14 | - * One of the types: array, object, string, boolean, number |
|
15 | - * |
|
16 | - * @var string |
|
17 | - */ |
|
18 | - public $type; |
|
13 | + /** |
|
14 | + * One of the types: array, object, string, boolean, number |
|
15 | + * |
|
16 | + * @var string |
|
17 | + */ |
|
18 | + public $type; |
|
19 | 19 | |
20 | - /** |
|
21 | - * The default value |
|
22 | - * |
|
23 | - * @var string |
|
24 | - */ |
|
25 | - public $default; |
|
20 | + /** |
|
21 | + * The default value |
|
22 | + * |
|
23 | + * @var string |
|
24 | + */ |
|
25 | + public $default; |
|
26 | 26 | |
27 | - /** |
|
28 | - * The separator, by default ":" for object and "," for array. |
|
29 | - * |
|
30 | - * @var string |
|
31 | - */ |
|
32 | - public $separator; |
|
27 | + /** |
|
28 | + * The separator, by default ":" for object and "," for array. |
|
29 | + * |
|
30 | + * @var string |
|
31 | + */ |
|
32 | + public $separator; |
|
33 | 33 | |
34 | - /** |
|
35 | - * Specify the format of fields for object |
|
36 | - * [ field_name => Format, field_name => Format, ... ] |
|
37 | - * Specify the format of an element of array |
|
38 | - * |
|
39 | - * @var mixed |
|
40 | - */ |
|
41 | - public $format; |
|
34 | + /** |
|
35 | + * Specify the format of fields for object |
|
36 | + * [ field_name => Format, field_name => Format, ... ] |
|
37 | + * Specify the format of an element of array |
|
38 | + * |
|
39 | + * @var mixed |
|
40 | + */ |
|
41 | + public $format; |
|
42 | 42 | |
43 | 43 | } |
@@ -5,8 +5,6 @@ |
||
5 | 5 | // You should not change it manually as it will be overwritten on next build |
6 | 6 | // @codingStandardsIgnoreFile |
7 | 7 | |
8 | -use Helper\Functional; |
|
9 | - |
|
10 | 8 | trait FunctionalTesterActions |
11 | 9 | { |
12 | 10 | /** |
@@ -1,8 +1,6 @@ |
||
1 | 1 | <?php namespace Wn\Generators\Commands; |
2 | 2 | |
3 | 3 | |
4 | -use InvalidArgumentException; |
|
5 | - |
|
6 | 4 | class ControllerCommand extends BaseCommand { |
7 | 5 | |
8 | 6 | protected $signature = 'wn:controller |
@@ -5,33 +5,33 @@ |
||
5 | 5 | |
6 | 6 | class ControllerCommand extends BaseCommand { |
7 | 7 | |
8 | - protected $signature = 'wn:controller |
|
8 | + protected $signature = 'wn:controller |
|
9 | 9 | {model : Name of the model (with namespace if not App)} |
10 | 10 | {--no-routes= : without routes} |
11 | 11 | {--force= : override the existing files} |
12 | 12 | {--laravel : Use Laravel style route definitions} |
13 | 13 | '; |
14 | 14 | |
15 | - protected $description = 'Generates RESTful controller using the RESTActions trait'; |
|
15 | + protected $description = 'Generates RESTful controller using the RESTActions trait'; |
|
16 | 16 | |
17 | 17 | public function handle() |
18 | 18 | { |
19 | - $model = $this->argument('model'); |
|
20 | - $name = ''; |
|
21 | - if(strrpos($model, "\\") === false){ |
|
22 | - $name = $model; |
|
23 | - $model = "App\\" . $model; |
|
24 | - } else { |
|
25 | - $name = explode("\\", $model); |
|
26 | - $name = $name[count($name) - 1]; |
|
27 | - } |
|
19 | + $model = $this->argument('model'); |
|
20 | + $name = ''; |
|
21 | + if(strrpos($model, "\\") === false){ |
|
22 | + $name = $model; |
|
23 | + $model = "App\\" . $model; |
|
24 | + } else { |
|
25 | + $name = explode("\\", $model); |
|
26 | + $name = $name[count($name) - 1]; |
|
27 | + } |
|
28 | 28 | $controller = ucwords(str_plural($name)) . 'Controller'; |
29 | 29 | $content = $this->getTemplate('controller') |
30 | - ->with([ |
|
31 | - 'name' => $controller, |
|
32 | - 'model' => $model |
|
33 | - ]) |
|
34 | - ->get(); |
|
30 | + ->with([ |
|
31 | + 'name' => $controller, |
|
32 | + 'model' => $model |
|
33 | + ]) |
|
34 | + ->get(); |
|
35 | 35 | |
36 | 36 | $this->save($content, "./app/Http/Controllers/{$controller}.php", "{$controller}"); |
37 | 37 | if(! $this->option('no-routes')){ |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | $model = $this->argument('model'); |
20 | 20 | $name = ''; |
21 | - if(strrpos($model, "\\") === false){ |
|
21 | + if (strrpos($model, "\\") === false) { |
|
22 | 22 | $name = $model; |
23 | 23 | $model = "App\\" . $model; |
24 | 24 | } else { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | ->get(); |
35 | 35 | |
36 | 36 | $this->save($content, "./app/Http/Controllers/{$controller}.php", "{$controller}"); |
37 | - if(! $this->option('no-routes')){ |
|
37 | + if (!$this->option('no-routes')) { |
|
38 | 38 | $options = [ |
39 | 39 | 'resource' => snake_case($name, '-'), |
40 | 40 | '--controller' => $controller, |