JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "DatabaseMessage.php"
Full Path: /var/www/laravel_filter/vendor/laravel/framework/src/Illuminate/Notifications/Messages/DatabaseMessage.php
File size: 405 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Illuminate\Notifications\Messages;
class DatabaseMessage
{
/**
* The data that should be stored with the notification.
*
* @var array
*/
public $data = [];
/**
* Create a new database message.
*
* @param array $data
* @return void
*/
public function __construct(array $data = [])
{
$this->data = $data;
}
}