| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function handle() |
||
| 34 | { |
||
| 35 | |||
| 36 | $this->comment(PHP_EOL.Inspiring::quote().PHP_EOL); |
||
| 37 | |||
| 38 | $account = Account::where('username', 'ricardorsierra')->first(); |
||
| 39 | |||
| 40 | $business = Business::all(); |
||
|
|
|||
| 41 | $accounts = Account::all(); |
||
| 42 | |||
| 43 | |||
| 44 | |||
| 45 | $bot = (new GetMidias($account))->prepare('carollnovais')->execute(); |
||
| 46 | $bot = (new GetStories($account))->prepare('carollnovais')->execute(); |
||
| 47 | $bot = (new GetFollowers($account))->prepare('carollnovais')->execute(); |
||
| 48 | } |
||
| 49 | } |
||
| 50 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.