| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 27 | public function testGet()  | 
            ||
| 28 |     { | 
            ||
| 29 |         $this->assertEquals('Hello1', $this->storageList->get('test1')); | 
            ||
| 30 |         $this->assertEquals('Hello3', $this->storageList->get('test3')); | 
            ||
| 31 |         $this->assertEquals('Hello4', $this->storageList->get('test4')); | 
            ||
| 32 |         $this->assertNull($this->storageList->get('test5')); | 
            ||
| 33 | }  | 
            ||
| 34 | |||
| 45 | 
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.