Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::table('cms_apicustom', function (Blueprint $table) { |
||
16 | $table->string('permalink')->nullable()->change(); |
||
17 | $table->string('tabel')->nullable()->change(); |
||
18 | $table->string('aksi')->nullable()->change(); |
||
19 | $table->string('kolom')->nullable()->change(); |
||
20 | $table->string('orderby')->nullable()->change(); |
||
21 | $table->string('sub_query_1')->nullable()->change(); |
||
22 | $table->string('sql_where')->nullable()->change(); |
||
23 | $table->string('nama')->nullable()->change(); |
||
24 | $table->string('keterangan')->nullable()->change(); |
||
25 | $table->string('parameter')->nullable()->change(); |
||
26 | }); |
||
41 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.