Файл: app/Rules/ValidateCronjobKeyRule.php
Строк: 33
<?php
namespace AppRules;
use IlluminateContractsValidationRule;
class ValidateCronjobKeyRule implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
if ($value == config('settings.cronjob_key')) {
return true;
}
return false;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return __('Invalid cron job key.');
}
}