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

17 files changed

+3
-69
lines changed

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@
2727
"suggest": {
2828
"zendframework/zend-filter": "Zend\\Filter component",
2929
"zendframework/zend-i18n": "Zend\\I18n component",
30-
"zendframework/zend-validator": "Zend\\Validator component",
31-
"zendframework/zend-loader": "Zend\\Loader component"
30+
"zendframework/zend-validator": "Zend\\Validator component"
3231
},
3332
"extra": {
3433
"branch-alias": {
35-
"dev-master": "2.4-dev",
36-
"dev-develop": "2.5-dev"
34+
"dev-master": "2.1-dev",
35+
"dev-develop": "2.2-dev"
3736
}
3837
},
3938
"autoload-dev": {

src/ClassFileLocator.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File;
@@ -19,9 +18,6 @@
1918

2019
/**
2120
* Locate files containing PHP classes, interfaces, abstracts or traits
22-
*
23-
* @category Zend
24-
* @package Zend_File
2521
*/
2622
class ClassFileLocator extends FilterIterator
2723
{

src/Exception/BadMethodCallException.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,10 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File\Exception;
1211

13-
/**
14-
* @category Zend
15-
* @package Zend_File_Transfer
16-
*/
1712
class BadMethodCallException extends \BadMethodCallException implements
1813
ExceptionInterface
1914
{}

src/Exception/ExceptionInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File\Exception;
1211

1312
/**
1413
* Marker interface for exceptions found in this component
15-
*
16-
* @package Zend_File
17-
* @subpackage Exception
1814
*/
1915
interface ExceptionInterface
2016
{

src/Exception/InvalidArgumentException.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File\Exception;
1211

1312
/**
1413
* Exception class raised when invalid arguments are discovered
15-
*
16-
* @package Zend_File
1714
*/
1815
class InvalidArgumentException
1916
extends \InvalidArgumentException

src/Exception/RuntimeException.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,10 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File\Exception;
1211

13-
/**
14-
* @category Zend
15-
* @package Zend_File_Transfer
16-
*/
1712
class RuntimeException
1813
extends \RuntimeException
1914
implements ExceptionInterface

src/PhpClassFile.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File;
@@ -14,9 +13,6 @@
1413

1514
/**
1615
* Locate files containing PHP classes, interfaces, abstracts or traits
17-
*
18-
* @category Zend
19-
* @package Zend_File
2016
*/
2117
class PhpClassFile extends SplFileInfo
2218
{

src/Transfer/Adapter/AbstractAdapter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File\Transfer\Adapter;
@@ -30,8 +29,6 @@
3029
* and filter chains instead.
3130
*
3231
* @todo Rewrite
33-
* @category Zend
34-
* @package Zend_File_Transfer
3532
*/
3633
abstract class AbstractAdapter implements TranslatorAwareInterface
3734
{

src/Transfer/Adapter/FilterPluginManager.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File_Transfer
98
*/
109

1110
namespace Zend\File\Transfer\Adapter;
@@ -18,8 +17,6 @@
1817
* Enforces that filters retrieved are instances of
1918
* FilterInterface. Additionally, it registers a number of default filters.
2019
*
21-
* @category Zend
22-
* @package Zend_File_Transfer
2320
*/
2421
class FilterPluginManager extends BaseManager
2522
{

src/Transfer/Adapter/Http.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* @link http://github.com/zendframework/zf2 for the canonical source repository
66
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
77
* @license http://framework.zend.com/license/new-bsd New BSD License
8-
* @package Zend_File
98
*/
109

1110
namespace Zend\File\Transfer\Adapter;
@@ -18,8 +17,6 @@
1817
/**
1918
* File transfer adapter class for the HTTP protocol
2019
*
21-
* @category Zend
22-
* @package Zend_File_Transfer
2320
*/
2421
class Http extends AbstractAdapter
2522
{

0 commit comments

Comments
 (0)