anonymous()
last analyzed

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
nc 1
nop 0
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
    Route::group(['namespace'=>'Ipecompany\Smsirlaravel\Controllers','middleware'=>config('smsirlaravel.middlewares')], function (){
0 ignored issues
show
Bug introduced by
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
Bug introduced by
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