Passed
Push — main ( cfd31f...988f4a )
by Roberto
02:16
created
src/Authenticator/UserAuthenticator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
 
90 90
 
91
-    public function register($username, $password=null, $level=1)
91
+    public function register($username, $password = null, $level = 1)
92 92
     {
93 93
         // Check if username is already taken
94 94
         if ($this->getUserByUsername($username)) {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         }
97 97
 
98 98
         // Hash the password
99
-        if (! $password) {
99
+        if (!$password) {
100 100
             $password = $this->randomPassword(length: 5);
101 101
         }
102 102
 
Please login to merge, or discard this patch.
src/Middleware/BaseAccessControlMiddleware.php 1 patch
Spacing   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,18 +14,17 @@  discard block
 block discarded – undo
14 14
     protected function handle(mixed ...$params): HttpResponse|Request
15 15
     {
16 16
 
17
-        if($this->match instanceof MatchRoute) {
17
+        if ($this->match instanceof MatchRoute) {
18 18
             $reflection = new \ReflectionMethod($this->match->controller, $this->match->method);
19 19
             $attributes = $reflection->getAttributes();
20 20
 
21 21
             foreach ($attributes as $attribute) {
22
-                if(is_subclass_of($attribute->getName(), AbstractAccessControlAttribute::class)) {
22
+                if (is_subclass_of($attribute->getName(), AbstractAccessControlAttribute::class)) {
23 23
                     return
24
-                        $this->checkPermissions($attribute->getName(),  ...($attribute->getArguments()))?
25
-                        $this->request :
26
-                        new RedirectResponse(
24
+                        $this->checkPermissions($attribute->getName(), ...($attribute->getArguments())) ?
25
+                        $this->request : new RedirectResponse(
27 26
                             Application::getAuthConfig()->login_url,
28
-                            redirect_after: $this->request->url
27
+                            redirect_after : $this->request->url
29 28
                         );
30 29
                 }
31 30
 
@@ -36,7 +35,7 @@  discard block
 block discarded – undo
36 35
 
37 36
 
38 37
     protected function checkPermissions(string $modifier, mixed ...$params):bool{
39
-        if($modifier == LoginRequired::class){
38
+        if ($modifier == LoginRequired::class) {
40 39
             $authenticator = new \Lepton\Authenticator\UserAuthenticator();
41 40
             return $authenticator->isLoggedIn();
42 41
         }
Please login to merge, or discard this patch.
src/Middleware/ACFMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use \Lepton\Http\Response\{SuccessResponse, HttpResponse, RedirectResponse};
8 8
 
9 9
 
10
-class ACFMiddleware extends BaseAccessControlMiddleware{
10
+class ACFMiddleware extends BaseAccessControlMiddleware {
11 11
 
12 12
     protected function checkPermissions(string $modifier, mixed ...$params):bool{
13 13
 
Please login to merge, or discard this patch.
src/Middleware/AbstractMiddleware.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,20 +8,20 @@
 block discarded – undo
8 8
 
9 9
 // Abstract Middleware to be used in Routing
10 10
 
11
-abstract class AbstractMiddleware{
11
+abstract class AbstractMiddleware {
12 12
 
13 13
   public BaseMatch $match;
14 14
   public Request $request;
15 15
 
16
-  public function __construct(){  }
16
+  public function __construct() {  }
17 17
 
18 18
   abstract protected function handle(mixed ...$args): HttpResponse|Request;
19 19
 
20
-  public function addMatcher(BaseMatch $match){
20
+  public function addMatcher(BaseMatch $match) {
21 21
     $this->match = $match;
22 22
   }
23 23
 
24
-  public function setRequest(Request $request){
24
+  public function setRequest(Request $request) {
25 25
     $this->request = $request;
26 26
   }
27 27
 
Please login to merge, or discard this patch.
src/Exceptions/ControllerNotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,4 +3,4 @@
 block discarded – undo
3 3
 
4 4
 use Exception;
5 5
 
6
-class ControllerNotFoundException extends Exception{}
7 6
\ No newline at end of file
7
+class ControllerNotFoundException extends Exception {}
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/TableNameNotSetException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 
4 4
 use Exception;
5 5
 
6
-class TableNameNotSetException extends Exception{
6
+class TableNameNotSetException extends Exception {
7 7
 
8
-  public function __construct(\ReflectionClass $class, $message = "", $code = 0, ?\Throwable $previous = null){
8
+  public function __construct(\ReflectionClass $class, $message = "", $code = 0, ?\Throwable $previous = null) {
9 9
 
10 10
     $className = $class->getName();
11 11
 
12
-    $message =  "No Table Name: ".
12
+    $message = "No Table Name: ".
13 13
                 "Model '$className' has no table name set.";
14 14
 
15 15
     $this->line = $class->getStartLine();
Please login to merge, or discard this patch.
src/Exceptions/MultipleFieldAttributeException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,14 +5,14 @@
 block discarded – undo
5 5
 use Throwable;
6 6
 use Lepton\Helpers\Functions;
7 7
 
8
-class MultipleFieldAttributeException extends FieldException{
8
+class MultipleFieldAttributeException extends FieldException {
9 9
 
10
-  public function __construct(\ReflectionProperty $prop, $message = "Lo", $code = 0, ?\Throwable $previous = null){
10
+  public function __construct(\ReflectionProperty $prop, $message = "Lo", $code = 0, ?\Throwable $previous = null) {
11 11
 
12 12
     $propName = $prop->getName();
13 13
     $className = $prop->getDeclaringClass()->getName();
14 14
 
15
-    $message =  "Multiple Field attributes: ".
15
+    $message = "Multiple Field attributes: ".
16 16
                 "Field '$propName' of '$className' has more than one Field Attribute.";
17 17
 
18 18
     parent::__construct($prop, $message, $code, $previous);
Please login to merge, or discard this patch.
src/Exceptions/InvalidFieldException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,4 +3,4 @@
 block discarded – undo
3 3
 
4 4
 use Exception;
5 5
 
6
-class InvalidFieldException extends Exception{}
7 6
\ No newline at end of file
7
+class InvalidFieldException extends Exception {}
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
src/Exceptions/MultiplePrimaryKeyException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,14 +5,14 @@
 block discarded – undo
5 5
 use Throwable;
6 6
 use Lepton\Helpers\Functions;
7 7
 
8
-class MultiplePrimaryKeyException extends FieldException{
8
+class MultiplePrimaryKeyException extends FieldException {
9 9
 
10
-  public function __construct(\ReflectionProperty $prop, $message = "Lo", $code = 0, ?\Throwable $previous = null){
10
+  public function __construct(\ReflectionProperty $prop, $message = "Lo", $code = 0, ?\Throwable $previous = null) {
11 11
 
12 12
     $propName = $prop->getName();
13 13
     $className = $prop->getDeclaringClass()->getName();
14 14
 
15
-    $message =  "Multiple PrimaryKey: ".
15
+    $message = "Multiple PrimaryKey: ".
16 16
                 "Field '$propName' of '$className' has more than one Primary Key.";
17 17
 
18 18
     parent::__construct($prop, $message, $code, $previous);
Please login to merge, or discard this patch.