summaryrefslogtreecommitdiff
path: root/src/File/Handler.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/File/Handler.php')
-rw-r--r--src/File/Handler.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/File/Handler.php b/src/File/Handler.php
index eecedc0..e8e30b0 100644
--- a/src/File/Handler.php
+++ b/src/File/Handler.php
@@ -6,10 +6,23 @@ use Exception;
/**
* File handler
+ *
+ * @author Phil Burton <phil@pgburton.com>
*/
class Handler
{
+ /**
+ * Filename
+ *
+ * @var string
+ */
protected $filename;
+
+ /**
+ * Contents of file
+ *
+ * @var string
+ */
protected $file;
/**