Вход Регистрация
Файл: gapps/vendor/laravel/framework/src/Illuminate/Auth/Access/Response.php
Строк: 31
<?php

namespace IlluminateAuthAccess;

class 
Response
{
    
/**
     * The response message.
     *
     * @var string|null
     */
    
protected $message;

    
/**
     * Create a new response.
     *
     * @param  string|null  $message
     */
    
public function __construct($message null)
    {
        
$this->message $message;
    }

    
/**
     * Get the response message.
     *
     * @return string|null
     */
    
public function message()
    {
        return 
$this->message;
    }

    
/**
     * Get the string representation of the message.
     *
     * @return string
     */
    
public function __toString()
    {
        return 
$this->message();
    }
}
Онлайн: 1
Реклама