Completed
Push — master ( 85e358...cf3219 )
by Rakesh
04:24 queued 10s
created
lib/Zend/Gdata/Spreadsheets/CellEntry.php 1 patch
Switch Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -70,14 +70,14 @@
 block discarded – undo
70 70
     {
71 71
         $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
72 72
         switch ($absoluteNodeName) {
73
-        case $this->lookupNamespace('gs') . ':' . 'cell';
74
-            $cell = new Zend_Gdata_Spreadsheets_Extension_Cell();
75
-            $cell->transferFromDOM($child);
76
-            $this->_cell = $cell;
77
-            break;
78
-        default:
79
-            parent::takeChildFromDOM($child);
80
-            break;
73
+            case $this->lookupNamespace('gs') . ':' . 'cell';
74
+                $cell = new Zend_Gdata_Spreadsheets_Extension_Cell();
75
+                $cell->transferFromDOM($child);
76
+                $this->_cell = $cell;
77
+                break;
78
+            default:
79
+                parent::takeChildFromDOM($child);
80
+                break;
81 81
         }
82 82
     }
83 83
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/Color.php 1 patch
Switch Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -83,11 +83,11 @@
 block discarded – undo
83 83
     protected function takeAttributeFromDOM($attribute)
84 84
     {
85 85
         switch ($attribute->localName) {
86
-        case 'value':
87
-            $this->_value = $attribute->nodeValue;
88
-            break;
89
-        default:
90
-            parent::takeAttributeFromDOM($attribute);
86
+            case 'value':
87
+                $this->_value = $attribute->nodeValue;
88
+                break;
89
+            default:
90
+                parent::takeAttributeFromDOM($attribute);
91 91
         }
92 92
     }
93 93
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/Selected.php 1 patch
Switch Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -82,20 +82,20 @@
 block discarded – undo
82 82
     protected function takeAttributeFromDOM($attribute)
83 83
     {
84 84
         switch ($attribute->localName) {
85
-        case 'value':
86
-            if ($attribute->nodeValue == "true") {
87
-                $this->_value = true;
88
-            }
89
-            else if ($attribute->nodeValue == "false") {
90
-                $this->_value = false;
91
-            }
92
-            else {
93
-                require_once 'Zend/Gdata/App/InvalidArgumentException.php';
94
-                throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
95
-            }
96
-            break;
97
-        default:
98
-            parent::takeAttributeFromDOM($attribute);
85
+            case 'value':
86
+                if ($attribute->nodeValue == "true") {
87
+                    $this->_value = true;
88
+                }
89
+                else if ($attribute->nodeValue == "false") {
90
+                    $this->_value = false;
91
+                }
92
+                else {
93
+                    require_once 'Zend/Gdata/App/InvalidArgumentException.php';
94
+                    throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
95
+                }
96
+                break;
97
+            default:
98
+                parent::takeAttributeFromDOM($attribute);
99 99
         }
100 100
     }
101 101
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/QuickAdd.php 1 patch
Switch Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -82,19 +82,19 @@
 block discarded – undo
82 82
     protected function takeAttributeFromDOM($attribute)
83 83
     {
84 84
         switch ($attribute->localName) {
85
-        case 'value':
86
-            if ($attribute->nodeValue == "true") {
87
-                $this->_value = true;
88
-            }
89
-            else if ($attribute->nodeValue == "false") {
90
-                $this->_value = false;
91
-            }
92
-            else {
93
-                throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
94
-            }
95
-            break;
96
-        default:
97
-            parent::takeAttributeFromDOM($attribute);
85
+            case 'value':
86
+                if ($attribute->nodeValue == "true") {
87
+                    $this->_value = true;
88
+                }
89
+                else if ($attribute->nodeValue == "false") {
90
+                    $this->_value = false;
91
+                }
92
+                else {
93
+                    throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
94
+                }
95
+                break;
96
+            default:
97
+                parent::takeAttributeFromDOM($attribute);
98 98
         }
99 99
     }
100 100
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/Timezone.php 1 patch
Switch Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -82,11 +82,11 @@
 block discarded – undo
82 82
     protected function takeAttributeFromDOM($attribute)
83 83
     {
84 84
         switch ($attribute->localName) {
85
-        case 'value':
86
-            $this->_value = $attribute->nodeValue;
87
-            break;
88
-        default:
89
-            parent::takeAttributeFromDOM($attribute);
85
+            case 'value':
86
+                $this->_value = $attribute->nodeValue;
87
+                break;
88
+            default:
89
+                parent::takeAttributeFromDOM($attribute);
90 90
         }
91 91
     }
92 92
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/Link.php 1 patch
Switch Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -87,14 +87,14 @@
 block discarded – undo
87 87
     {
88 88
         $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
89 89
         switch ($absoluteNodeName) {
90
-        case $this->lookupNamespace('gCal') . ':' . 'webContent':
91
-            $webContent = new Zend_Gdata_Calendar_Extension_WebContent();
92
-            $webContent->transferFromDOM($child);
93
-            $this->_webContent = $webContent;
94
-            break;
95
-        default:
96
-            parent::takeChildFromDOM($child);
97
-            break;
90
+            case $this->lookupNamespace('gCal') . ':' . 'webContent':
91
+                $webContent = new Zend_Gdata_Calendar_Extension_WebContent();
92
+                $webContent->transferFromDOM($child);
93
+                $this->_webContent = $webContent;
94
+                break;
95
+            default:
96
+                parent::takeChildFromDOM($child);
97
+                break;
98 98
         }
99 99
     }
100 100
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/SendEventNotifications.php 1 patch
Switch Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -81,19 +81,19 @@
 block discarded – undo
81 81
     protected function takeAttributeFromDOM($attribute)
82 82
     {
83 83
         switch ($attribute->localName) {
84
-        case 'value':
85
-            if ($attribute->nodeValue == "true") {
86
-                $this->_value = true;
87
-            }
88
-            else if ($attribute->nodeValue == "false") {
89
-                $this->_value = false;
90
-            }
91
-            else {
92
-                throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
93
-            }
94
-            break;
95
-        default:
96
-            parent::takeAttributeFromDOM($attribute);
84
+            case 'value':
85
+                if ($attribute->nodeValue == "true") {
86
+                    $this->_value = true;
87
+                }
88
+                else if ($attribute->nodeValue == "false") {
89
+                    $this->_value = false;
90
+                }
91
+                else {
92
+                    throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
93
+                }
94
+                break;
95
+            default:
96
+                parent::takeAttributeFromDOM($attribute);
97 97
         }
98 98
     }
99 99
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/Hidden.php 1 patch
Switch Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -82,20 +82,20 @@
 block discarded – undo
82 82
     protected function takeAttributeFromDOM($attribute)
83 83
     {
84 84
         switch ($attribute->localName) {
85
-        case 'value':
86
-            if ($attribute->nodeValue == "true") {
87
-                $this->_value = true;
88
-            }
89
-            else if ($attribute->nodeValue == "false") {
90
-                $this->_value = false;
91
-            }
92
-            else {
93
-                require_once 'Zend/Gdata/App/InvalidArgumentException.php';
94
-                throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
95
-            }
96
-            break;
97
-        default:
98
-            parent::takeAttributeFromDOM($attribute);
85
+            case 'value':
86
+                if ($attribute->nodeValue == "true") {
87
+                    $this->_value = true;
88
+                }
89
+                else if ($attribute->nodeValue == "false") {
90
+                    $this->_value = false;
91
+                }
92
+                else {
93
+                    require_once 'Zend/Gdata/App/InvalidArgumentException.php';
94
+                    throw new Zend_Gdata_App_InvalidArgumentException("Expected 'true' or 'false' for gCal:selected#value.");
95
+                }
96
+                break;
97
+            default:
98
+                parent::takeAttributeFromDOM($attribute);
99 99
         }
100 100
     }
101 101
 
Please login to merge, or discard this patch.
lib/Zend/Gdata/Calendar/Extension/AccessLevel.php 1 patch
Switch Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -82,11 +82,11 @@
 block discarded – undo
82 82
     protected function takeAttributeFromDOM($attribute)
83 83
     {
84 84
         switch ($attribute->localName) {
85
-        case 'value':
86
-            $this->_value = $attribute->nodeValue;
87
-            break;
88
-        default:
89
-            parent::takeAttributeFromDOM($attribute);
85
+            case 'value':
86
+                $this->_value = $attribute->nodeValue;
87
+                break;
88
+            default:
89
+                parent::takeAttributeFromDOM($attribute);
90 90
         }
91 91
     }
92 92
 
Please login to merge, or discard this patch.