summaryrefslogtreecommitdiff
path: root/src/File
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2018-05-07 15:24:00 +0100
committerFbenas <philbeansburton@gmail.com>2018-05-07 15:24:00 +0100
commit19564c9e18ae456e39bc2c8a306f9e79dd619e11 (patch)
treebcaa30f4cdc273bd55af7948ed252bda3b4b8412 /src/File
parent8350b6bd36d3a4bb3a99dfbf67e746f4f815927c (diff)
Docblock and fix toString functions
Diffstat (limited to 'src/File')
-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;
/**