/**
  * Get application paths. Use the preset from the Orchestral package but redefine the storage path
  *
  * @return array
  */
 protected function getApplicationPaths()
 {
     $basePath = __DIR__ . '/../..';
     $orchestralPaths = parent::getApplicationPaths();
     $orchestralPaths['storage'] = "{$basePath}/tests/storage";
     return $orchestralPaths;
 }