| 1 | <?php |
||
| 8 | class CreateJwtClaimsTable extends Migration |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var string $tableName - Table name. |
||
| 13 | */ |
||
| 14 | protected $tableName; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Initialise the migration. |
||
| 18 | */ |
||
| 19 | public function __construct() |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Run the migrations. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function up() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Reverse the migrations. |
||
| 42 | * |
||
| 43 | * @return void |
||
| 44 | */ |
||
| 45 | public function down() |
||
| 49 | |||
| 50 | } |
||
| 51 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.