| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class PostController extends BaseController |
||
| 15 | { |
||
| 16 | use AuthorizesRequests, DispatchesJobs, ValidatesRequests; |
||
| 17 | |||
| 18 | use Crudable; |
||
| 19 | const ADD_MESSAGE = 'Added Successfully!'; |
||
| 20 | const DELETE_MESSAGE = 'Deleted Successfully!'; |
||
| 21 | const UPDATE_MESSAGE = 'Updated Successfully!'; |
||
| 22 | |||
| 23 | public function index() { |
||
| 27 | } |
||
| 28 | |||
| 29 | public function create(Request $request) { |
||
| 34 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.