GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 385070...07c613 )
by .
04:20 queued 02:18
created

MigrateMakeCommand::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace duxet\Rethinkdb\Console\Migrations;
4
5
use duxet\Rethinkdb\Migrations\MigrationCreator;
6
use Illuminate\Database\Console\Migrations\MigrateMakeCommand as LaravelMigration;
7
use Illuminate\Foundation\Composer;
8
9
class MigrateMakeCommand extends LaravelMigration
10
{
11
    /**
12
     * The console command signature.
13
     *
14
     * @var string
15
     */
16
    protected $signature = 'make:rethink-migration {name : The name of the migration.}
17
        {--create= : The table to be created.}
18
        {--table= : The table to migrate.}
19
        {--path= : The location where the migration file should be created.}';
20
21
    /**
22
     * Create a new migration install command instance.
23
     *
24
     * @param duxet\Rethinkdb\Migrations\MigrationCreator $creator
25
     * @param \Illuminate\Foundation\Composer             $composer
26
     *
27
     * @return void
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
28
     */
29
    public function __construct(MigrationCreator $creator, Composer $composer)
30
    {
31
        parent::__construct($creator, $composer);
32
    }
33
}
34