Passed
Push — develop ( b732dc...a7a9ff )
by nguereza
12:25
created
src/BaseCollection.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,8 +68,7 @@
 block discarded – undo
68 68
      * Create new instance
69 69
      * @param array<mixed, T> $initials
70 70
      */
71
-    public function __construct(array $initials = [])
72
-    {
71
+    public function __construct(array $initials = []) {
73 72
         $this->data = new DataContainer($initials);
74 73
     }
75 74
 
Please login to merge, or discard this patch.
src/Map/Pair.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,15 +50,13 @@
 block discarded – undo
50 50
  * @class Pair
51 51
  * @package Platine\Collection\Map
52 52
  */
53
-class Pair
54
-{
53
+class Pair {
55 54
     /**
56 55
      * Create new instance
57 56
      * @param mixed $key
58 57
      * @param mixed $value
59 58
      */
60
-    public function __construct(protected mixed $key, protected mixed $value)
61
-    {
59
+    public function __construct(protected mixed $key, protected mixed $value) {
62 60
     }
63 61
 
64 62
     /**
Please login to merge, or discard this patch.
src/Map/MapInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,7 @@
 block discarded – undo
50 50
  * @class MapInterface
51 51
  * @package Platine\Collection\Map
52 52
  */
53
-interface MapInterface
54
-{
53
+interface MapInterface {
55 54
     /**
56 55
      * Add element to the collection
57 56
      * @param mixed $key
Please login to merge, or discard this patch.
src/TypedCollection.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,15 +52,13 @@
 block discarded – undo
52 52
  * @template T
53 53
  * @extends Collection<T>
54 54
  */
55
-class TypedCollection extends Collection
56
-{
55
+class TypedCollection extends Collection {
57 56
     /**
58 57
      * Create new instance
59 58
      * @param string $type
60 59
      * @param array<mixed, T> $data
61 60
      */
62
-    public function __construct(protected string $type, array $data = [])
63
-    {
61
+    public function __construct(protected string $type, array $data = []) {
64 62
         parent::__construct($data, $type);
65 63
     }
66 64
 
Please login to merge, or discard this patch.
src/Stack/Stack.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * @class Stack
55 55
  * @package Platine\Collection\Stack
56 56
  */
57
-class Stack implements Countable
58
-{
57
+class Stack implements Countable {
59 58
     /**
60 59
      *
61 60
      * @var array<int, mixed>
@@ -66,8 +65,7 @@  discard block
 block discarded – undo
66 65
      * Create new instance
67 66
      * @param string $type
68 67
      */
69
-    public function __construct(protected string $type)
70
-    {
68
+    public function __construct(protected string $type) {
71 69
     }
72 70
 
73 71
     /**
Please login to merge, or discard this patch.
src/CollectionInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,7 @@
 block discarded – undo
50 50
  * @class CollectionInterface
51 51
  * @package Platine\Collection
52 52
  */
53
-interface CollectionInterface
54
-{
53
+interface CollectionInterface {
55 54
     /**
56 55
      * Add element to the collection
57 56
      * @param mixed $value
Please login to merge, or discard this patch.
src/Exception/InvalidOperationException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,6 +38,5 @@
 block discarded – undo
38 38
  * @class InvalidOperationException
39 39
  * @package Platine\Collection\Exception
40 40
  */
41
-class InvalidOperationException extends Exception
42
-{
41
+class InvalidOperationException extends Exception {
43 42
 }
Please login to merge, or discard this patch.
src/TypeCheck.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * @class TypeCheck
53 53
  * @package Platine\Collection
54 54
  */
55
-class TypeCheck
56
-{
55
+class TypeCheck {
57 56
     /**
58 57
      *
59 58
      * @param mixed $value1
Please login to merge, or discard this patch.
src/DataContainer.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,7 @@
 block discarded – undo
63 63
      * Create new instance
64 64
      * @param array<int|string, T> $data
65 65
      */
66
-    public function __construct(protected array $data = [])
67
-    {
66
+    public function __construct(protected array $data = []) {
68 67
     }
69 68
 
70 69
     /**
Please login to merge, or discard this patch.