Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 5ef6a39

Browse files
committed
Merge branch 'cs/various-things' of https://github.com/Maks3w/zf2
3 parents 137f14a + 9f886a2 + 65e3b0b commit 5ef6a39

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+177
-175
lines changed

src/Client/Adapter/Exception/InvalidArgumentException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
* @category Zend
1818
* @package Zend_Application
1919
*/
20-
class InvalidArgumentException extends Exception\InvalidArgumentException implements
20+
class InvalidArgumentException extends Exception\InvalidArgumentException implements
2121
ExceptionInterface
2222
{}

src/Client/Adapter/Exception/OutOfRangeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
* @category Zend
1818
* @package Zend_Application
1919
*/
20-
class OutOfRangeException extends Exception\OutOfRangeException implements
20+
class OutOfRangeException extends Exception\OutOfRangeException implements
2121
ExceptionInterface
2222
{}

src/Client/Adapter/Exception/RuntimeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
* @category Zend
1818
* @package Zend_Application
1919
*/
20-
class RuntimeException extends Exception\RuntimeException implements
20+
class RuntimeException extends Exception\RuntimeException implements
2121
ExceptionInterface
2222
{}

src/Client/Cookies.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ public function getCookie($uri, $cookie_name, $ret_as = self::COOKIE_OBJECT)
248248
* @param int $ret_as What value to return
249249
* @return array|string
250250
*/
251-
protected function _flattenCookiesArray($ptr, $ret_as = self::COOKIE_OBJECT) {
251+
protected function _flattenCookiesArray($ptr, $ret_as = self::COOKIE_OBJECT)
252+
{
252253
if (is_array($ptr)) {
253254
$ret = ($ret_as == self::COOKIE_STRING_CONCAT ? '' : array());
254255
foreach ($ptr as $item) {

src/Client/Exception/InvalidArgumentException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
* @category Zend
1818
* @package Zend_Application
1919
*/
20-
class InvalidArgumentException extends Exception\InvalidArgumentException implements
20+
class InvalidArgumentException extends Exception\InvalidArgumentException implements
2121
ExceptionInterface
2222
{}

src/Client/Exception/OutOfRangeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212

1313
use Zend\Http\Exception;
1414

15-
class OutOfRangeException extends Exception\OutOfRangeException implements
15+
class OutOfRangeException extends Exception\OutOfRangeException implements
1616
ExceptionInterface
1717
{}

src/Client/Exception/RuntimeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
* @category Zend
1818
* @package Zend_Application
1919
*/
20-
class RuntimeException extends Exception\RuntimeException implements
20+
class RuntimeException extends Exception\RuntimeException implements
2121
ExceptionInterface
2222
{}

src/Cookies.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ public function getCookie($uri, $cookie_name, $ret_as = self::COOKIE_OBJECT)
220220
* @param int $ret_as What value to return
221221
* @return array|string
222222
*/
223-
protected function _flattenCookiesArray($ptr, $ret_as = self::COOKIE_OBJECT) {
223+
protected function _flattenCookiesArray($ptr, $ret_as = self::COOKIE_OBJECT)
224+
{
224225
if (is_array($ptr)) {
225226
$ret = ($ret_as == self::COOKIE_STRING_CONCAT ? '' : array());
226227
foreach ($ptr as $item) {

src/Exception/InvalidArgumentException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Zend\Http\Exception;
1212

13-
class InvalidArgumentException extends \InvalidArgumentException implements
13+
class InvalidArgumentException extends \InvalidArgumentException implements
1414
ExceptionInterface
1515
{
1616
}

src/Exception/OutOfRangeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
namespace Zend\Http\Exception;
1212

13-
class OutOfRangeException extends \OutOfRangeException implements
13+
class OutOfRangeException extends \OutOfRangeException implements
1414
ExceptionInterface
1515
{}

0 commit comments

Comments
 (0)