diff --git a/.gitignore b/.gitignore index 0ecb81d..9e6816f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,11 +7,11 @@ composer.phar /nbproject # Logs -/logs +/logs/* !/logs/.gitkeep # Repositories -/repositories +/repositories/* !/repositories/.gitkeep # App diff --git a/logs/.gitkeep b/logs/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/logs/.gitkeep @@ -0,0 +1 @@ + diff --git a/public/test.php b/public/test.php deleted file mode 100644 index bceae64..0000000 --- a/public/test.php +++ /dev/null @@ -1,18 +0,0 @@ -' . $title . ''; - echo '
' . print_r($debug, true) . ''; -} - -try { - $a = new FakeClass; -} catch (Exception $e) { - __debug('Exception', $e); -} catch (Throwable $e) { - __debug('Throwable', $e); -} - - - - diff --git a/repositories/.gitkeep b/repositories/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/repositories/.gitkeep @@ -0,0 +1 @@ + diff --git a/src/Deploy.php b/src/Deploy.php index 00b446b..9228728 100644 --- a/src/Deploy.php +++ b/src/Deploy.php @@ -6,7 +6,7 @@ use Pimple\Container; use Articstudio\Bitbucket\Change; use Articstudio\Bitbucket\Exception\Deploy\NotFoundException; -use Articstudio\Bitbucket\System\Directory; +use Articstudio\Bitbucket\System\Filesystem\Directory; use RuntimeException; use Monolog\Logger; use Monolog\Handler\NativeMailerHandler; diff --git a/src/System/Filesystem/Directory.php b/src/System/Filesystem/Directory.php index be3a727..ceebf12 100644 --- a/src/System/Filesystem/Directory.php +++ b/src/System/Filesystem/Directory.php @@ -1,10 +1,9 @@