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

Commit

Permalink
Merge branch 'master' of https://github.com/zendframework/zf2 into zf…
Browse files Browse the repository at this point in the history
…-3371
  • Loading branch information
Show file tree
Hide file tree
Showing 28 changed files with 92 additions and 246 deletions.
4 changes: 0 additions & 4 deletions src/AbstractServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server;
Expand All @@ -14,9 +13,6 @@

/**
* Abstract Server implementation
*
* @category Zend
* @package Zend_Server
*/
abstract class AbstractServer implements Server
{
Expand Down
4 changes: 0 additions & 4 deletions src/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server;
Expand All @@ -14,9 +13,6 @@

/**
* \Zend\Server\Cache: cache server definitions
*
* @category Zend
* @package Zend_Server
*/
class Cache
{
Expand Down
4 changes: 0 additions & 4 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server;

/**
* Client Interface
*
* @category Zend
* @package Zend_Server
*/
interface Client
{
Expand Down
8 changes: 2 additions & 6 deletions src/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server;

/**
* Server methods metadata
*
* @category Zend
* @package Zend_Server
*/
class Definition implements \Countable, \Iterator
{
Expand Down Expand Up @@ -58,7 +54,7 @@ public function setOverwriteExistingMethods($flag)
* @param array|\Zend\Server\Method\Definition $method
* @param null|string $name
* @return \Zend\Server\Definition
* @throws \Zend\Server\Exception\ExceptionInterface if duplicate or invalid method provided
* @throws \Zend\Server\Exception\InvalidArgumentException if duplicate or invalid method provided
*/
public function addMethod($method, $name = null)
{
Expand Down Expand Up @@ -235,7 +231,7 @@ public function next()
*/
public function rewind()
{
return reset($this->methods);
reset($this->methods);
}

/**
Expand Down
1 change: 0 additions & 1 deletion src/Exception/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Exception;
Expand Down
4 changes: 0 additions & 4 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Exception;

/**
* Zend_Server exceptions
*
* @category Zend
* @package Zend_Server
*/
interface ExceptionInterface
{
Expand Down
1 change: 0 additions & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Exception;
Expand Down
1 change: 0 additions & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Exception;
Expand Down
5 changes: 0 additions & 5 deletions src/Method/Callback.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Method;
Expand All @@ -14,10 +13,6 @@

/**
* Method callback metadata
*
* @category Zend
* @package Zend_Server
* @subpackage Zend_Server_Method
*/
class Callback
{
Expand Down
5 changes: 0 additions & 5 deletions src/Method/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Method;
Expand All @@ -14,10 +13,6 @@

/**
* Method definition metadata
*
* @category Zend
* @package Zend_Server
* @subpackage Zend_Server_Method
*/
class Definition
{
Expand Down
5 changes: 0 additions & 5 deletions src/Method/Parameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Method;

/**
* Method parameter metadata
*
* @category Zend
* @package Zend_Server
* @subpackage Zend_Server_Method
*/
class Parameter
{
Expand Down
5 changes: 0 additions & 5 deletions src/Method/Prototype.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server\Method;

/**
* Method prototype metadata
*
* @category Zend
* @package Zend_Server
* @subpackage Zend_Server_Method
*/
class Prototype
{
Expand Down
8 changes: 2 additions & 6 deletions src/Reflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Server
*/

namespace Zend\Server;
Expand All @@ -15,9 +14,6 @@

/**
* Reflection for determining method signatures to use with server classes
*
* @category Zend
* @package Zend_Server
*/
class Reflection
{
Expand All @@ -36,7 +32,7 @@ class Reflection
* method name (used for the signature key). Primarily to avoid collisions,
* also for XmlRpc namespacing
* @return \Zend\Server\Reflection\ReflectionClass
* @throws \Zend\Server\Reflection\Exception\ExceptionInterface
* @throws \Zend\Server\Reflection\Exception\InvalidArgumentException
*/
public static function reflectClass($class, $argv = false, $namespace = '')
{
Expand Down Expand Up @@ -70,7 +66,7 @@ public static function reflectClass($class, $argv = false, $namespace = '')
* function name (used for the signature key). Primarily to avoid
* collisions, also for XmlRpc namespacing
* @return \Zend\Server\Reflection\ReflectionFunction
* @throws \Zend\Server\Reflection\Exception\ExceptionInterface
* @throws \Zend\Server\Reflection\Exception\InvalidArgumentException
*/
public static function reflectFunction($function, $argv = false, $namespace = '')
{
Expand Down
Loading

0 comments on commit e9ab567

Please # to comment.