| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Bedard\Shop\Updates; |
||
| 29 | protected function seedProducts($count) |
||
| 30 | { |
||
| 31 | $categories = Category::count(); |
||
| 32 | |||
| 33 | for ($i = 0; $i < $count; $i++) { |
||
| 34 | $product = Factory::create(new Product, ['name' => 'Product ' . $i, 'slug' => 'product-' . $i]); |
||
| 35 | $product->categories()->sync([rand(1, $categories)]); |
||
| 36 | } |
||
| 37 | } |
||
| 38 | } |
||
| 39 |
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.