Skip to content

Commit

Permalink
remove google app engine stuff because they dont support sqlite atm -.-
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-blom committed Jul 23, 2019
1 parent 5c72c5c commit b47e7df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
7 changes: 0 additions & 7 deletions app.yml

This file was deleted.

16 changes: 0 additions & 16 deletions src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,4 @@ protected function configureRoutes(RouteCollectionBuilder $routes): void
$routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, '/', 'glob');
$routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, '/', 'glob');
}

public function getCacheDir()
{
if ($this->environment === 'prod') {
return sys_get_temp_dir();
}
return $this->getProjectDir() . '/var/cache/' . $this->environment;
}

public function getLogDir()
{
if ($this->environment === 'prod') {
return sys_get_temp_dir();
}
return $this->getProjectDir() . '/var/log';
}
}

0 comments on commit b47e7df

Please sign in to comment.