summaryrefslogtreecommitdiff
path: root/src/Message
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2017-03-21 23:29:59 +0000
committerFbenas <philbeansburton@gmail.com>2017-03-21 23:29:59 +0000
commit79bc514b2dc91f997ed662427ffb0e0cb6c7a735 (patch)
treed0dae2659b0f9416deec6531fcdc425a3f8c9991 /src/Message
parenta74eee77954b4e874f032fdad735b283e0778902 (diff)
Simple welcome pageHEADmaster
Diffstat (limited to 'src/Message')
-rw-r--r--src/Message/Name.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/Message/Name.php b/src/Message/Name.php
new file mode 100644
index 0000000..631fdd2
--- /dev/null
+++ b/src/Message/Name.php
@@ -0,0 +1,62 @@
+<?php
+
+namespace App\Message;
+
+use App\Message\Base;
+
+/**
+ * Name message
+ *
+ * @author Phil Burton <phil@pgburton.com>
+ */
+class Name extends Base
+{
+ /**
+ * The list of vars we need to inject
+ *
+ * @var array
+ */
+ protected $injects = ['inject', 'second'];
+
+ /**
+ * The array of important vars
+ *
+ * @var string
+ */
+ protected $important = ['inject'];
+
+ /**
+ * Inject
+ * @var string
+ */
+ public $inject;
+
+ /**
+ * Second inject
+ *
+ * @var string
+ */
+ public $second = "second";
+
+ /**
+ * Construct to set any inject vars from functions if required
+ *
+ * @author Phil Burton <phil@pgburton.com>
+ */
+ public function __construct(Handler $handler)
+ {
+ $this->inject = $this->getInject();
+ parent::__construct($handler);
+ }
+
+ /**
+ * Get our inject value
+ *
+ * @author Phil Burton <phil@pgburton.com>
+ * @return string
+ */
+ public function getInject()
+ {
+ return (string) time();
+ }
+}