| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | protected function setUp() : void |
||
| 9 | { |
||
| 10 | if( !class_exists( '\\League\\Flysystem\\Filesystem' ) ) { |
||
| 11 | $this->markTestSkipped( 'Install Flysystem first' ); |
||
| 12 | } |
||
| 13 | |||
| 14 | if( !class_exists( '\League\Flysystem\GoogleCloudStorage\GoogleCloudStorageAdapter' ) ) { |
||
| 15 | $this->markTestSkipped( 'Install Flysystem GoogleCloudStorageAdapter adapter' ); |
||
| 16 | } |
||
| 39 |