Issues (35)

src/routes.php (2 issues)

Labels
Severity
1
<?php
2
    Route::group(['namespace'=>'Ipecompany\Smsirlaravel\Controllers','middleware'=>config('smsirlaravel.middlewares')], function (){
0 ignored issues
show
The function config was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

2
    Route::group(['namespace'=>'Ipecompany\Smsirlaravel\Controllers','middleware'=>/** @scrutinizer ignore-call */ config('smsirlaravel.middlewares')], function (){
Loading history...
3
	Route::get(config('smsirlaravel.route'),'SmsirlaravelController@index')->name('sms-admin');
0 ignored issues
show
The function config was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

3
	Route::get(/** @scrutinizer ignore-call */ config('smsirlaravel.route'),'SmsirlaravelController@index')->name('sms-admin');
Loading history...
4
	Route::get('sms-admin/{log}/delete','SmsirlaravelController@delete')->name('deleteLog');
5
});
6