summaryrefslogtreecommitdiff
path: root/src/Message/Overview.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Message/Overview.php')
-rw-r--r--src/Message/Overview.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Message/Overview.php b/src/Message/Overview.php
new file mode 100644
index 0000000..3676176
--- /dev/null
+++ b/src/Message/Overview.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace App\Message;
+
+use App\Message\Base;
+
+class Overview extends Base
+{
+ protected $message_name = 'opening';
+ protected $injects = ['inject', 'second'];
+ protected $important = ['inject'];
+ public $inject;
+ public $second = "second";
+
+ public function __construct()
+ {
+ $this->inject = $this->getInject();
+ parent::__construct();
+ }
+
+ public function getInject()
+ {
+ return 'foo';
+ }
+} \ No newline at end of file