| Conditions | 1 |
| Paths | 1 |
| Total Lines | 23 |
| Code Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | public static function configure(Table $table): Table |
||
| 18 | { |
||
| 19 | return $table |
||
| 20 | ->columns([ |
||
| 21 | TextColumn::make('title') |
||
| 22 | ->searchable(), |
||
| 23 | TextColumn::make('type') |
||
| 24 | ->searchable(), |
||
| 25 | IconColumn::make('is_active') |
||
| 26 | ->boolean(), |
||
| 27 | TextColumn::make('created_at') |
||
| 28 | ->dateTime(), |
||
| 29 | ]) |
||
| 30 | ->filters([ |
||
| 31 | TernaryFilter::make('is_active'), |
||
| 32 | ]) |
||
| 33 | ->recordActions([ |
||
| 34 | EditAction::make(), |
||
| 35 | DeleteAction::make(), |
||
| 36 | ]) |
||
| 37 | ->toolbarActions([ |
||
| 38 | BulkActionGroup::make([ |
||
| 39 | DeleteBulkAction::make(), |
||
| 40 | ]), |
||
| 45 |
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