Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | public function up() |
||
18 | { |
||
19 | Schema::create('exception_log', function (Blueprint $table) { |
||
20 | $table->increments('id'); |
||
21 | $table->string('path', 25); |
||
22 | $table->string('method', 25); |
||
23 | $table->string('url', 250); |
||
24 | $table->string('uri', 250); |
||
25 | $table->string('full_url', 250); |
||
26 | $table->longText('query')->nullable(); |
||
27 | $table->string('file_name', 250); |
||
28 | $table->string('http_host', 250); |
||
29 | $table->string('http_user_agent', 250); |
||
30 | $table->string('ip_address', 25); |
||
31 | $table->longText('all_request_data')->nullable(); |
||
32 | $table->longText('exception_data')->nullable(); |
||
33 | $table->timestamps(); |
||
34 | }); |
||
47 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths