summaryrefslogtreecommitdiff
path: root/src/Message/Overview.php
blob: c328acc9261c71cc7e32bca8817de2255e9e65e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 time();
    }
}