Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function up() |
||
13 | { |
||
14 | Schema::create('media', function (Blueprint $table) { |
||
|
|||
15 | $table->increments('id'); |
||
16 | $table->morphs('model'); |
||
17 | $table->string('collection_name'); |
||
18 | $table->string('name'); |
||
19 | $table->string('file_name'); |
||
20 | $table->string('disk'); |
||
21 | $table->unsignedInteger('size'); |
||
22 | $table->text('manipulations'); |
||
23 | $table->text('custom_properties'); |
||
24 | $table->unsignedInteger('order_column')->nullable(); |
||
25 | $table->nullableTimestamps(); |
||
26 | }); |
||
27 | } |
||
28 | /** |
||
36 |
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.