App\Http\Controllers\ClockworkController::__construct PHP Method

__construct() public method

Initialize ClockworkController
public __construct ( )
    public function __construct()
    {
        $this->apiKey = env('CLOCKWORK_API_KEY');
        $this->client = new ClockworkClient($this->apiKey);
        $this->message = new Message();
        $this->message->setNumber(self::MSG_NUMBER);
        $this->message->setContent(trans('texts.message.sample_body'));
    }