Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('searches', function (Blueprint $table) { |
||
|
|||
17 | $table->uuid('id'); |
||
18 | $table->primary('id'); |
||
19 | $table->uuid('user_id')->unsigned(); |
||
20 | $table->foreign('user_id')->references('id')->on('users'); |
||
21 | $table->string('keyword')->nullable(); |
||
22 | $table->string('location')->nullable(); |
||
23 | $table->softDeletes(); |
||
24 | $table->timestamps(); |
||
25 | }); |
||
26 | } |
||
27 | |||
38 |
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.