for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link http://horoshop.ua
* @copyright Copyright (c) 2015-2018 Horoshop TM
* @author Andrey Telesh <[email protected]>
*/
namespace FtwSoft\NotificationChannels\Intercom\Tests\Mocks;
use Illuminate\Notifications\Notifiable;
class TestNotifiable
{
use Notifiable;
Illuminate\Notifications\Notifiable
FtwSoft\NotificationChan...ts\Mocks\TestNotifiable
$email
$phone_number
* @var bool|array
private $to;
* TestNotifiable constructor.
*
* @param $to
public function __construct($to = false)
$this->to = $to;
}
* @return array|bool
public function routeNotificationForIntercom()
return $this->to;