| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 15 | public function up() |
||
| 16 | { |
||
| 17 | |||
| 18 | Schema::create('attacher_images', function (Blueprint $table) |
||
|
|
|||
| 19 | { |
||
| 20 | $table->increments('id'); |
||
| 21 | $table->unsignedInteger('owner_id')->index(); |
||
| 22 | $table->string('owner_type')->index(); |
||
| 23 | $table->string('file_extension'); |
||
| 24 | $table->string("file_name")->nullable(); |
||
| 25 | $table->smallInteger("file_size", FALSE, TRUE)->nullable(); |
||
| 26 | $table->string("mime_type")->nullable(); |
||
| 27 | $table->timestamps(); |
||
| 28 | }); |
||
| 29 | |||
| 30 | } |
||
| 31 | |||
| 42 |
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.