@@ -9,30 +9,30 @@ |
||
| 9 | 9 | |
| 10 | 10 | public function __construct(object $model) |
| 11 | 11 | { |
| 12 | - $this->form['model'] = ucfirst(get_class($model)); |
|
| 13 | - } |
|
| 12 | + $this->form['model'] = ucfirst(get_class($model)); |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | 15 | public function setAction(string $action): Rules |
| 16 | 16 | { |
| 17 | - $this->action = $action; |
|
| 18 | - return $this; |
|
| 19 | - } |
|
| 17 | + $this->action = $action; |
|
| 18 | + return $this; |
|
| 19 | + } |
|
| 20 | 20 | |
| 21 | 21 | public function addField(string $field, array $test): Rules |
| 22 | 22 | { |
| 23 | - if(empty($this->action)){ |
|
| 23 | + if(empty($this->action)){ |
|
| 24 | 24 | self::$errors[] = "Form action not registered."; |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - if(empty($this->form[$this->action][$field])){ |
|
| 27 | + if(empty($this->form[$this->action][$field])){ |
|
| 28 | 28 | $this->form[$this->action][$field] = $test; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - return $this; |
|
| 32 | - } |
|
| 31 | + return $this; |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | 34 | public function getRules(string $action): ?array |
| 35 | 35 | { |
| 36 | - return (array_key_exists($action, $this->form)) ? $this->form[$action] : null; |
|
| 37 | - } |
|
| 36 | + return (array_key_exists($action, $this->form)) ? $this->form[$action] : null; |
|
| 37 | + } |
|
| 38 | 38 | } |
@@ -22,11 +22,11 @@ |
||
| 22 | 22 | |
| 23 | 23 | public function addField(string $field, array $test): Rules |
| 24 | 24 | { |
| 25 | - if(empty($this->action)){ |
|
| 25 | + if (empty($this->action)) { |
|
| 26 | 26 | self::$errors[] = "Form action not registered."; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - if(empty($this->form[$this->action][$field])){ |
|
| 29 | + if (empty($this->form[$this->action][$field])) { |
|
| 30 | 30 | $this->form[$this->action][$field] = $test; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -5,20 +5,20 @@ |
||
| 5 | 5 | use HnrAzevedo\Validator\Validator; |
| 6 | 6 | use HnrAzevedo\Validator\Rules; |
| 7 | 7 | |
| 8 | -Class User{ |
|
| 8 | +Class User { |
|
| 9 | 9 | |
| 10 | 10 | public function __construct() |
| 11 | 11 | { |
| 12 | 12 | |
| 13 | - Validator::add($this, function(Rules $rules){ |
|
| 13 | + Validator::add($this, function(Rules $rules) { |
|
| 14 | 14 | $rules->setAction('login') |
| 15 | 15 | //->addField('email',['minlength'=>1,'regex'=>'/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/','required'=>true]) |
| 16 | - ->addField('email',['minlength'=>1,'filter'=>FILTER_VALIDATE_EMAIL,'required'=>true]) |
|
| 17 | - ->addField('password',['minlength'=>6,'maxlength'=>20,'required'=>true]) |
|
| 18 | - ->addField('password2',['equals'=>'password','required'=>true]) |
|
| 19 | - ->addField('remember',['minlength'=>2,'maxlength'=>2,'required'=>false]) |
|
| 20 | - ->addField('birth',['type'=>'date','required'=>true]) |
|
| 21 | - ->addField('phones',['mincount'=>2,'maxcount'=>3,'required'=>true,'minlength'=>8,'maxlength'=>9]); |
|
| 16 | + ->addField('email', ['minlength'=>1, 'filter'=>FILTER_VALIDATE_EMAIL, 'required'=>true]) |
|
| 17 | + ->addField('password', ['minlength'=>6, 'maxlength'=>20, 'required'=>true]) |
|
| 18 | + ->addField('password2', ['equals'=>'password', 'required'=>true]) |
|
| 19 | + ->addField('remember', ['minlength'=>2, 'maxlength'=>2, 'required'=>false]) |
|
| 20 | + ->addField('birth', ['type'=>'date', 'required'=>true]) |
|
| 21 | + ->addField('phones', ['mincount'=>2, 'maxcount'=>3, 'required'=>true, 'minlength'=>8, 'maxlength'=>9]); |
|
| 22 | 22 | |
| 23 | 23 | return $rules; |
| 24 | 24 | }); |
@@ -11,15 +11,15 @@ |
||
| 11 | 11 | { |
| 12 | 12 | Validator::add($this, function(Rules $rules){ |
| 13 | 13 | $rules->setAction('login') |
| 14 | - //->addField('email',['minlength'=>1,'regex'=>'/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/','required'=>true]) |
|
| 15 | - ->addField('email',['minlength'=>1,'filter'=>FILTER_VALIDATE_EMAIL,'required'=>true]) |
|
| 16 | - ->addField('password',['minlength'=>6,'maxlength'=>20,'required'=>true]) |
|
| 17 | - ->addField('password2',['equals'=>'password','required'=>true]) |
|
| 18 | - ->addField('remember',['minlength'=>2,'maxlength'=>2,'required'=>false]) |
|
| 19 | - ->addField('birth',['type'=>'date','required'=>true]) |
|
| 20 | - ->addField('phones',['mincount'=>2,'maxcount'=>3,'required'=>true,'minlength'=>8,'maxlength'=>9]); |
|
| 14 | + //->addField('email',['minlength'=>1,'regex'=>'/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/','required'=>true]) |
|
| 15 | + ->addField('email',['minlength'=>1,'filter'=>FILTER_VALIDATE_EMAIL,'required'=>true]) |
|
| 16 | + ->addField('password',['minlength'=>6,'maxlength'=>20,'required'=>true]) |
|
| 17 | + ->addField('password2',['equals'=>'password','required'=>true]) |
|
| 18 | + ->addField('remember',['minlength'=>2,'maxlength'=>2,'required'=>false]) |
|
| 19 | + ->addField('birth',['type'=>'date','required'=>true]) |
|
| 20 | + ->addField('phones',['mincount'=>2,'maxcount'=>3,'required'=>true,'minlength'=>8,'maxlength'=>9]); |
|
| 21 | 21 | |
| 22 | - return $rules; |
|
| 22 | + return $rules; |
|
| 23 | 23 | }); |
| 24 | 24 | |
| 25 | 25 | return $this; |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | |
| 78 | 78 | runMiddlewares($serverRequest); |
| 79 | 79 | |
| 80 | -}catch(Exception $er){ |
|
| 80 | +} catch(Exception $er){ |
|
| 81 | 81 | |
| 82 | 82 | die("Code Error: {$er->getCode()}<br>Line: {$er->getLine()}<br>File: {$er->getFile()}<br>Message: {$er->getMessage()}."); |
| 83 | 83 | |
@@ -10,20 +10,20 @@ discard block |
||
| 10 | 10 | use Psr\Http\Message\ResponseInterface; |
| 11 | 11 | use Psr\Http\Server\MiddlewareInterface; |
| 12 | 12 | |
| 13 | -try{ |
|
| 13 | +try { |
|
| 14 | 14 | $serverRequest = (new Factory())->createServerRequest('GET', new Uri('/')); |
| 15 | - $serverRequest = $serverRequest->withAttribute('validator',[ |
|
| 15 | + $serverRequest = $serverRequest->withAttribute('validator', [ |
|
| 16 | 16 | 'namespace' => 'HnrAzevedo\\Validator\\Example\\Rules', |
| 17 | 17 | 'data' => $data |
| 18 | 18 | ]); |
| 19 | 19 | |
| 20 | - class App implements MiddlewareInterface{ |
|
| 20 | + class App implements MiddlewareInterface { |
|
| 21 | 21 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
| 22 | 22 | { |
| 23 | - if(!$request->getAttribute('validator')['valid']){ |
|
| 23 | + if (!$request->getAttribute('validator')['valid']) { |
|
| 24 | 24 | $err = ''; |
| 25 | - foreach($request->getAttribute('validator')['errors'] as $er => $error){ |
|
| 26 | - $err .= (is_array($error)) ? implode('',array_keys($error)) . ' ' . implode('', array_values($error)) : $error; |
|
| 25 | + foreach ($request->getAttribute('validator')['errors'] as $er => $error) { |
|
| 26 | + $err .= (is_array($error)) ? implode('', array_keys($error)).' '.implode('', array_values($error)) : $error; |
|
| 27 | 27 | $err .= ', '; |
| 28 | 28 | } |
| 29 | 29 | throw new \Exception(substr($err, 0, -2)); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - define('GLOBAL_MIDDLEWARES',[ |
|
| 36 | + define('GLOBAL_MIDDLEWARES', [ |
|
| 37 | 37 | Validator::class, |
| 38 | 38 | App::class |
| 39 | 39 | ]); |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | |
| 70 | 70 | function runMiddlewares($serverRequest) |
| 71 | 71 | { |
| 72 | - nextExample(new class implements RequestHandlerInterface{ |
|
| 72 | + nextExample(new class implements RequestHandlerInterface { |
|
| 73 | 73 | public function handle(ServerRequestInterface $request): ResponseInterface |
| 74 | 74 | { |
| 75 | 75 | return (new Factory())->createResponse(200); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | runMiddlewares($serverRequest); |
| 81 | 81 | |
| 82 | -}catch(Exception $er){ |
|
| 82 | +}catch (Exception $er) { |
|
| 83 | 83 | |
| 84 | 84 | die("Code Error: {$er->getCode()}<br>Line: {$er->getLine()}<br>File: {$er->getFile()}<br>Message: {$er->getMessage()}."); |
| 85 | 85 | |
@@ -6,12 +6,12 @@ |
||
| 6 | 6 | use Psr\Http\Server\RequestHandlerInterface; |
| 7 | 7 | use Psr\Http\Message\ResponseInterface; |
| 8 | 8 | |
| 9 | -trait MiddlewareTrait{ |
|
| 9 | +trait MiddlewareTrait { |
|
| 10 | 10 | |
| 11 | 11 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
| 12 | 12 | { |
| 13 | - $data = ($request->getAttribute('validator') !== null && isset($request->getAttribute('validator')['data'])) ? $request->getAttribute('validator')['data'] : $_REQUEST; |
|
| 14 | - $namespace = ($request->getAttribute('validator') !== null && isset($request->getAttribute('validator')['namespace'])) ? $request->getAttribute('validator')['namespace'] : ''; |
|
| 13 | + $data = ($request->getAttribute('validator')!==null && isset($request->getAttribute('validator')['data'])) ? $request->getAttribute('validator')['data'] : $_REQUEST; |
|
| 14 | + $namespace = ($request->getAttribute('validator')!==null && isset($request->getAttribute('validator')['namespace'])) ? $request->getAttribute('validator')['namespace'] : ''; |
|
| 15 | 15 | return $handler->handle($request->withAttribute('validator', [ |
| 16 | 16 | 'valid' => self::namespace($namespace)->execute($data), |
| 17 | 17 | 'errors' => self::getErrors() |
@@ -4,17 +4,17 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use HnrAzevedo\Validator\Validator; |
| 6 | 6 | |
| 7 | -try{ |
|
| 7 | +try { |
|
| 8 | 8 | |
| 9 | 9 | /* Checks whether the passed data is valid for the selected function */ |
| 10 | 10 | $valid = Validator::namespace('HnrAzevedo\\Validator\\Example\\Rules')->execute($data); |
| 11 | 11 | |
| 12 | 12 | $errors = []; |
| 13 | 13 | |
| 14 | - if(!$valid){ |
|
| 15 | - foreach(Validator::getErrors() as $err => $message){ |
|
| 14 | + if (!$valid) { |
|
| 15 | + foreach (Validator::getErrors() as $err => $message) { |
|
| 16 | 16 | $errors[] = [ |
| 17 | - 'input' => array_keys($message)[0], // Return name input error |
|
| 17 | + 'input' => array_keys($message)[0], // Return name input error |
|
| 18 | 18 | 'message' => $message[array_keys($message)[0]] // Return message error |
| 19 | 19 | ]; |
| 20 | 20 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | /* Transforms validation to Json format to be validated on the client if desired */ |
| 24 | 24 | $json = Validator::namespace('HnrAzevedo\\Validator\\Example\\Rules')->toJson($data); |
| 25 | 25 | |
| 26 | -}catch(Exception $er){ |
|
| 26 | +}catch (Exception $er) { |
|
| 27 | 27 | |
| 28 | 28 | die("Code Error: {$er->getCode()}<br> Line: {$er->getLine()}<br> File: {$er->getFile()}<br> Message: {$er->getMessage()}"); |
| 29 | 29 | |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | /* Transforms validation to Json format to be validated on the client if desired */ |
| 24 | 24 | $json = Validator::namespace('HnrAzevedo\\Validator\\Example\\Rules')->toJson($data); |
| 25 | 25 | |
| 26 | -}catch(Exception $er){ |
|
| 26 | +} catch(Exception $er){ |
|
| 27 | 27 | |
| 28 | 28 | die("Code Error: {$er->getCode()}<br> Line: {$er->getLine()}<br> File: {$er->getFile()}<br> Message: {$er->getMessage()}"); |
| 29 | 29 | |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | 'password' => 123456, |
| 9 | 9 | 'password2' => 123456, |
| 10 | 10 | 'phones' => [ |
| 11 | - '949164770','949164771','949164772' |
|
| 11 | + '949164770', '949164771', '949164772' |
|
| 12 | 12 | ], |
| 13 | 13 | 'birth' => '28/09/1996', |
| 14 | 14 | 'PROVIDER' => 'user', |
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | |
| 73 | 73 | self::getInstance()->validate(); |
| 74 | 74 | self::getInstance()->checkRequireds(); |
| 75 | - }catch(\Exception $er){ |
|
| 75 | + } catch(\Exception $er){ |
|
| 76 | 76 | self::getInstance()->errors[] = $er->getMessage(); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | self::getInstance()->errors[] = $er->getMessage(); |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - return self::checkErrors(); |
|
| 80 | + return self::checkErrors(); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | public static function checkErrors(): bool |
@@ -89,21 +89,21 @@ discard block |
||
| 89 | 89 | { |
| 90 | 90 | foreach ( (self::getInstance()->validator(self::getInstance()->model)->getRules(self::getInstance()->data['ROLE'])) as $key => $value) { |
| 91 | 91 | |
| 92 | - foreach (self::getInstance()->data as $keyy => $valuee) { |
|
| 92 | + foreach (self::getInstance()->data as $keyy => $valuee) { |
|
| 93 | 93 | |
| 94 | - self::getInstance()->checkExpected($keyy); |
|
| 94 | + self::getInstance()->checkExpected($keyy); |
|
| 95 | 95 | |
| 96 | - if($keyy===$key){ |
|
| 96 | + if($keyy===$key){ |
|
| 97 | 97 | |
| 98 | 98 | unset(self::getInstance()->required[$key]); |
| 99 | 99 | |
| 100 | - foreach ($value as $subkey => $subvalue) { |
|
| 100 | + foreach ($value as $subkey => $subvalue) { |
|
| 101 | 101 | $function = "check".ucfirst($subkey); |
| 102 | 102 | self::getInstance()->testMethod($function); |
| 103 | 103 | self::getInstance()->$function($keyy, $subvalue); |
| 104 | - } |
|
| 105 | - } |
|
| 106 | - } |
|
| 104 | + } |
|
| 105 | + } |
|
| 106 | + } |
|
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | self::getInstance()->existRole(self::getInstance()->model()); |
| 143 | 143 | |
| 144 | - foreach ( self::getInstance()->validator(self::getInstance()->model())->getRules($request['ROLE']) as $field => $r) { |
|
| 144 | + foreach ( self::getInstance()->validator(self::getInstance()->model())->getRules($request['ROLE']) as $field => $r) { |
|
| 145 | 145 | $r = self::getInstance()->replaceRegex($r); |
| 146 | 146 | $response .= ("'$field':".json_encode(array_reverse($r))).','; |
| 147 | 147 | } |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | private static function getClass(string $class) |
| 29 | 29 | { |
| 30 | - if(!class_exists($class)){ |
|
| 30 | + if (!class_exists($class)) { |
|
| 31 | 31 | throw new \RuntimeException("Form ID {$class} inválido"); |
| 32 | 32 | } |
| 33 | 33 | |
@@ -38,21 +38,21 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | private function existRole($rules) |
| 40 | 40 | { |
| 41 | - if(empty(self::getInstance()->validator($rules)->getRules(self::getInstance()->data['ROLE']))){ |
|
| 41 | + if (empty(self::getInstance()->validator($rules)->getRules(self::getInstance()->data['ROLE']))) { |
|
| 42 | 42 | throw new \RuntimeException('Não existe regras para validar este formulário'); |
| 43 | 43 | } |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | public function checkDatas(array $data): void |
| 47 | 47 | { |
| 48 | - if(!isset($data['PROVIDER']) || !isset($data['ROLE'])){ |
|
| 48 | + if (!isset($data['PROVIDER']) || !isset($data['ROLE'])) { |
|
| 49 | 49 | throw new \RuntimeException('The server did not receive the information needed to retrieve the requested validator'); |
| 50 | 50 | } |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | public static function execute(array $data): bool |
| 54 | 54 | { |
| 55 | - try{ |
|
| 55 | + try { |
|
| 56 | 56 | self::getInstance()->checkDatas($data); |
| 57 | 57 | |
| 58 | 58 | self::getInstance()->data = $data; |
@@ -63,8 +63,8 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | self::getInstance()->existRole(self::getInstance()->model); |
| 65 | 65 | |
| 66 | - foreach ( (self::getInstance()->validator(self::getInstance()->model)->getRules($data['ROLE'])) as $key => $value) { |
|
| 67 | - if(@$value['required'] === true){ |
|
| 66 | + foreach ((self::getInstance()->validator(self::getInstance()->model)->getRules($data['ROLE'])) as $key => $value) { |
|
| 67 | + if (@$value['required']===true) { |
|
| 68 | 68 | self::getInstance()->required[$key] = $value; |
| 69 | 69 | } |
| 70 | 70 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | self::getInstance()->validate(); |
| 75 | 75 | self::getInstance()->checkRequireds(); |
| 76 | - }catch(\Exception $er){ |
|
| 76 | + }catch (\Exception $er) { |
|
| 77 | 77 | self::getInstance()->errors[] = $er->getMessage(); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -82,18 +82,18 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | public static function checkErrors(): bool |
| 84 | 84 | { |
| 85 | - return (count(self::getInstance()->errors) === 0); |
|
| 85 | + return (count(self::getInstance()->errors)===0); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | public function validate(): void |
| 89 | 89 | { |
| 90 | - foreach ( (self::getInstance()->validator(self::getInstance()->model)->getRules(self::getInstance()->data['ROLE'])) as $key => $value) { |
|
| 90 | + foreach ((self::getInstance()->validator(self::getInstance()->model)->getRules(self::getInstance()->data['ROLE'])) as $key => $value) { |
|
| 91 | 91 | |
| 92 | 92 | foreach (self::getInstance()->data as $keyy => $valuee) { |
| 93 | 93 | |
| 94 | 94 | self::getInstance()->checkExpected($keyy); |
| 95 | 95 | |
| 96 | - if($keyy===$key){ |
|
| 96 | + if ($keyy===$key) { |
|
| 97 | 97 | |
| 98 | 98 | unset(self::getInstance()->required[$key]); |
| 99 | 99 | |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | private function checkExpected(string $keyy): void |
| 111 | 111 | { |
| 112 | - if(!array_key_exists($keyy, (self::getInstance()->validator(self::getInstance()->model)->getRules(self::getInstance()->data['ROLE'])) ) && !in_array($keyy, self::getInstance()->defaultData)){ |
|
| 112 | + if (!array_key_exists($keyy, (self::getInstance()->validator(self::getInstance()->model)->getRules(self::getInstance()->data['ROLE']))) && !in_array($keyy, self::getInstance()->defaultData)) { |
|
| 113 | 113 | throw new \RuntimeException("O campo '{$keyy}' não é esperado para está operação"); |
| 114 | 114 | } |
| 115 | 115 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | public function testMethod($method): void |
| 123 | 123 | { |
| 124 | - if(!method_exists(static::class, $method)){ |
|
| 124 | + if (!method_exists(static::class, $method)) { |
|
| 125 | 125 | throw new \RuntimeException("{$method} não é uma validação válida"); |
| 126 | 126 | } |
| 127 | 127 | } |
@@ -141,17 +141,17 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | self::getInstance()->existRole(self::getInstance()->model()); |
| 143 | 143 | |
| 144 | - foreach ( self::getInstance()->validator(self::getInstance()->model())->getRules($request['ROLE']) as $field => $r) { |
|
| 144 | + foreach (self::getInstance()->validator(self::getInstance()->model())->getRules($request['ROLE']) as $field => $r) { |
|
| 145 | 145 | $r = self::getInstance()->replaceRegex($r); |
| 146 | 146 | $response .= ("'$field':".json_encode(array_reverse($r))).','; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - return '{'.substr($response,0,-1).'}'; |
|
| 149 | + return '{'.substr($response, 0, -1).'}'; |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | private function replaceRegex(array $rules): array |
| 153 | 153 | { |
| 154 | - if(array_key_exists('regex', $rules)){ |
|
| 154 | + if (array_key_exists('regex', $rules)) { |
|
| 155 | 155 | $rules['regex'] = substr($rules['regex'], 1, -2); |
| 156 | 156 | } |
| 157 | 157 | return $rules; |
@@ -24,10 +24,10 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | protected function data($field = null, ?array $values = null) |
| 26 | 26 | { |
| 27 | - if(null !== $values){ |
|
| 27 | + if (null!==$values) { |
|
| 28 | 28 | $this->data[$field] = $values; |
| 29 | 29 | } |
| 30 | - if(null !== $field){ |
|
| 30 | + if (null!==$field) { |
|
| 31 | 31 | return $this->data[$field]; |
| 32 | 32 | } |
| 33 | 33 | return $this->data; |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | protected function validator(string $model, ?object $callback = null) |
| 37 | 37 | { |
| 38 | - if(null !== $callback){ |
|
| 38 | + if (null!==$callback) { |
|
| 39 | 39 | $this->validators[$model] = $callback; |
| 40 | 40 | } |
| 41 | 41 | return $this->validators[$model]; |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | protected function model(?string $model = null): string |
| 45 | 45 | { |
| 46 | - if(null !== $model){ |
|
| 46 | + if (null!==$model) { |
|
| 47 | 47 | $this->model = $model; |
| 48 | 48 | } |
| 49 | 49 | return $this->model; |
@@ -8,9 +8,9 @@ discard block |
||
| 8 | 8 | |
| 9 | 9 | protected function checkRequireds(): void |
| 10 | 10 | { |
| 11 | - if(count(self::getInstance()->required()) > 0){ |
|
| 11 | + if (count(self::getInstance()->required())>0) { |
|
| 12 | 12 | self::getInstance()->error([ |
| 13 | - 'As seguintes informações não poderam ser validadas: '.implode(', ',array_keys(self::getInstance()->required())) |
|
| 13 | + 'As seguintes informações não poderam ser validadas: '.implode(', ', array_keys(self::getInstance()->required())) |
|
| 14 | 14 | ]); |
| 15 | 15 | } |
| 16 | 16 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | public function validateDate($date, $format = 'Y-m-d H:i:s') |
| 19 | 19 | { |
| 20 | 20 | $d = \DateTime::createFromFormat($format, $date); |
| 21 | - return $d && $d->format($format) == $date; |
|
| 21 | + return $d && $d->format($format)==$date; |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | protected function checkRequired(string $param): bool |
@@ -31,12 +31,12 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | protected function toNext(string $param, $value): bool |
| 33 | 33 | { |
| 34 | - return (self::getInstance()->checkRequired($param) || strlen($value > 0)); |
|
| 34 | + return (self::getInstance()->checkRequired($param) || strlen($value>0)); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | protected function testArray(string $param, $value): ?array |
| 38 | 38 | { |
| 39 | - if(!is_array($value)){ |
|
| 39 | + if (!is_array($value)) { |
|
| 40 | 40 | self::getInstance()->error([ |
| 41 | 41 | $param => 'Era esperado uma informação em formato array para está informação' |
| 42 | 42 | ]); |