%PDF- %PDF-
Direktori : /var/www/html/o91-api/vendor/laravel/framework/src/Illuminate/Auth/Access/ |
Current File : /var/www/html/o91-api/vendor/laravel/framework/src/Illuminate/Auth/Access/Response.php |
<?php namespace Illuminate\Auth\Access; class Response { /** * The response message. * * @var string|null */ protected $message; /** * Create a new response. * * @param string|null $message * @return void */ 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 (string) $this->message(); } }