diff options
author | Fbenas <philbeansburton@gmail.com> | 2017-08-20 04:18:13 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2017-08-20 04:18:13 +0100 |
commit | 0ed82a2c6ffd8e981d9dd388306379941ecb5720 (patch) | |
tree | 52c7d66149a93c7d4d8038d356bb0107bad09766 /src/Filesystem/CreateFile.php | |
parent | 048634fd8a65d37f21bcb3a34161f74be6aef95d (diff) |
WIP rejigging stuff
Diffstat (limited to 'src/Filesystem/CreateFile.php')
-rw-r--r-- | src/Filesystem/CreateFile.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Filesystem/CreateFile.php b/src/Filesystem/CreateFile.php new file mode 100644 index 0000000..f41d4b9 --- /dev/null +++ b/src/Filesystem/CreateFile.php @@ -0,0 +1,25 @@ +<?php + +namespace App\Filesystem; + +use App\Filesystem\Create; + +class CreateFile extends Create +{ + protected $filename; + protected $thing = "file"; + + public function __construct(string $filename) + { + parent::__construct($filename); + + if (file_exists($filename)) { + throw new \Exception('File already exists at: ' . $filename); + } + } + + public function excecute() + { + echo "execute"; + } +} |