Completed
Push — master ( ab4a14...6ea419 )
by Nelson
02:30
created
src/IntString.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
          * Nota: Cualquier objeto que no sea instancia de IntString se
105 105
          * considerará menor.
106 106
          *
107
-         * @param IntString|mixed $other Objeto con el que se va a comparar.
107
+         * @param VersionComponent $other Objeto con el que se va a comparar.
108 108
          *
109 109
          * @return integer Cero (0), si esta instancia es igual a $other; mayor
110 110
          *   a cero (>0), si es mayor a $other; menor a cero (<0), si es menor.
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Class definition:  [NelsonMartell]  IntString
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.1.1
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Class definition:  [NelsonMartell]  IntString
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.1.1
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 namespace NelsonMartell {
21 21
 
Please login to merge, or discard this patch.
src/Version.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
          *
39 39
          * @param int                              $major    Componente principal
40 40
          * @param int                              $minor    Componente secundario
41
-         * @param int|string|VersionComponent|null $build    Componente de compilación
42
-         * @param int|string|VersionComponent|null $revision Componente de revisión
41
+         * @param VersionComponent|null $build    Componente de compilación
42
+         * @param VersionComponent|null $revision Componente de revisión
43 43
          *
44 44
          * @throws InvalidArgumentException
45 45
          * */
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Class definition:  [NelsonMartell]  Version
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.1.1
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Class definition:  [NelsonMartell]  Version
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.1.1
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 namespace NelsonMartell {
21 21
 
Please login to merge, or discard this patch.
src/VersionComponent.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
         /**
167 167
          * Getter method for VersionComponent::IntValue property.
168 168
          *
169
-         * @return integer|NULL
169
+         * @return integer
170 170
          * */
171 171
         public function getIntValue()
172 172
         {
Please login to merge, or discard this patch.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Class definition:  [NelsonMartell]  VersionComponent
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.1.1
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Class definition:  [NelsonMartell]  VersionComponent
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.1.1
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 namespace NelsonMartell {
21 21
 
Please login to merge, or discard this patch.
config/bootstrap.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Library initialization
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.5.0
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Library initialization
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.5.0
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 // Set the path of translations
21 21
 bindtextdomain(NML_GETTEXT_DOMAIN, __DIR__.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'Locale');
Please login to merge, or discard this patch.
src/Collections/CollectionIterator.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Trait definition:  [NelsonMartell\Collections]  CollectionIterator
7
- * - Class definition:  [NelsonMartell\Collections]  Collection
8
- *
9
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
10
- *
11
- * Licensed under The MIT License (MIT)
12
- * For full copyright and license information, please see the LICENSE
13
- * Redistributions of files must retain the above copyright notice.
14
- *
15
- * @copyright 2015 Nelson Martell
16
- * @link      http://nelson6e65.github.io/php_nml/
17
- * @since     v0.4.0
18
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
19
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Trait definition:  [NelsonMartell\Collections]  CollectionIterator
7
+     * - Class definition:  [NelsonMartell\Collections]  Collection
8
+     *
9
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
10
+     *
11
+     * Licensed under The MIT License (MIT)
12
+     * For full copyright and license information, please see the LICENSE
13
+     * Redistributions of files must retain the above copyright notice.
14
+     *
15
+     * @copyright 2015 Nelson Martell
16
+     * @link      http://nelson6e65.github.io/php_nml/
17
+     * @since     v0.4.0
18
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
19
+     * */
20 20
 
21 21
 namespace NelsonMartell\Collections;
22 22
 
Please login to merge, or discard this patch.
src/Collections/ICollection.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Interface definition:  [NelsonMartell\Collections]  ICollection
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.1.1
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Interface definition:  [NelsonMartell\Collections]  ICollection
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.1.1
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 namespace NelsonMartell\Collections {
21 21
 
Please login to merge, or discard this patch.
src/Collections/IList.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Interface definition:  [NelsonMartell\Collections]  IList
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.1.1
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Interface definition:  [NelsonMartell\Collections]  IList
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.1.1
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 namespace NelsonMartell\Collections {
21 21
 
Please login to merge, or discard this patch.
src/Extensions/String.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Class definition:  [NelsonMartell\Extensions]  String
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.4.1
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Class definition:  [NelsonMartell\Extensions]  String
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.4.1
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 namespace NelsonMartell\Extensions;
20 20
 
21 21
 use Cake\Utility\Text;
Please login to merge, or discard this patch.
src/IComparable.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP: Nelson Martell Library file
4
- *
5
- * Content:
6
- * - Interface definition:  [NelsonMartell]  IComparable
7
- *
8
- * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
- *
10
- * Licensed under The MIT License (MIT)
11
- * For full copyright and license information, please see the LICENSE
12
- * Redistributions of files must retain the above copyright notice.
13
- *
14
- * @copyright 2015 Nelson Martell
15
- * @link      http://nelson6e65.github.io/php_nml/
16
- * @since     v0.3.2
17
- * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
- * */
3
+     * PHP: Nelson Martell Library file
4
+     *
5
+     * Content:
6
+     * - Interface definition:  [NelsonMartell]  IComparable
7
+     *
8
+     * Copyright © 2015 Nelson Martell (http://nelson6e65.github.io)
9
+     *
10
+     * Licensed under The MIT License (MIT)
11
+     * For full copyright and license information, please see the LICENSE
12
+     * Redistributions of files must retain the above copyright notice.
13
+     *
14
+     * @copyright 2015 Nelson Martell
15
+     * @link      http://nelson6e65.github.io/php_nml/
16
+     * @since     v0.3.2
17
+     * @license   http://www.opensource.org/licenses/mit-license.php The MIT License (MIT)
18
+     * */
19 19
 
20 20
 namespace NelsonMartell {
21 21
 
Please login to merge, or discard this patch.