Passed
Push — master ( 523373...f499fa )
by Christopher
24:17 queued 20:01
created
src/Interfaces/IComplexType.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace AlgoWeb\ODataMetadata\Interfaces;
4 4
 
5 5
 interface IComplexType{
6
-	    /**
7
-     * Gets as name
8
-     *
9
-     * @return string
10
-     */
6
+        /**
7
+         * Gets as name
8
+         *
9
+         * @return string
10
+         */
11 11
     public function getName();
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace AlgoWeb\ODataMetadata\Interfaces;
4 4
 
5
-interface IComplexType{
5
+interface IComplexType {
6 6
 	    /**
7 7
      * Gets as name
8 8
      *
Please login to merge, or discard this patch.
src/Interfaces/IEntityType.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -3,22 +3,22 @@
 block discarded – undo
3 3
 namespace AlgoWeb\ODataMetadata\Interfaces;
4 4
 
5 5
 interface IEntityType{
6
-	    /**
7
-     * Gets as name
8
-     *
9
-     * @return string
10
-     */
6
+        /**
7
+         * Gets as name
8
+         *
9
+         * @return string
10
+         */
11 11
     public function getName();
12 12
         /**
13
-     * Gets as baseType
14
-     *
15
-     * @return string
16
-     */
13
+         * Gets as baseType
14
+         *
15
+         * @return string
16
+         */
17 17
     public function getBaseType();
18 18
         /**
19
-     * Gets as abstract
20
-     *
21
-     * @return boolean
22
-     */
19
+         * Gets as abstract
20
+         *
21
+         * @return boolean
22
+         */
23 23
     public function getAbstract();
24 24
 }
25 25
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace AlgoWeb\ODataMetadata\Interfaces;
4 4
 
5
-interface IEntityType{
5
+interface IEntityType {
6 6
 	    /**
7 7
      * Gets as name
8 8
      *
Please login to merge, or discard this patch.
src/Interfaces/IFunctionImportParameterType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,5 +3,5 @@
 block discarded – undo
3 3
 
4 4
 namespace AlgoWeb\ODataMetadata\Interfaces;
5 5
 
6
-interface IFunctionImportParameterType{
6
+interface IFunctionImportParameterType {
7 7
 }
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
src/Interfaces/IFunctionImportType.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -11,17 +11,17 @@
 block discarded – undo
11 11
     public function getName();
12 12
     
13 13
         /**
14
-     * Gets as returnType
15
-     *
16
-     * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportReturnTypeType[]
17
-     */
14
+         * Gets as returnType
15
+         *
16
+         * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportReturnTypeType[]
17
+         */
18 18
     public function getReturnType();
19 19
     
20 20
         /**
21
-     * Adds as parameter
22
-     *
23
-     * @return self
24
-     * @param  \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportParameterType $parameter
25
-     */
21
+         * Adds as parameter
22
+         *
23
+         * @return self
24
+         * @param  \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionImportParameterType $parameter
25
+         */
26 26
     public function addToParameter(TFunctionImportParameterType $parameter);
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace AlgoWeb\ODataMetadata\Interfaces;
4 4
 
5
-interface IFunctionImportType{
5
+interface IFunctionImportType {
6 6
     /**
7 7
      * Gets as name
8 8
      *
Please login to merge, or discard this patch.