Thanks to visit codestin.com
Credit goes to github.com

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

Commit a57bb3d

Browse files
committed
Merge branch 'hotfix/zend_file' of https://github.com/Maks3w/zf2 into feature/file-refactor

14 files changed

Lines changed: 732 additions & 546 deletions

src/ClassFileLocator.php

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?php
2+
/**
3+
* Zend Framework
4+
*
5+
* LICENSE
6+
*
7+
* This source file is subject to the new BSD license that is bundled
8+
* with this package in the file LICENSE.txt.
9+
* It is also available through the world-wide-web at this URL:
10+
* http://framework.zend.com/license/new-bsd
11+
* If you did not receive a copy of the license and are unable to
12+
* obtain it through the world-wide-web, please send an email
13+
* to [email protected] so we can send you a copy immediately.
14+
*
15+
* @category Zend
16+
* @package Zend_File
17+
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
18+
* @license http://framework.zend.com/license/new-bsd New BSD License
19+
*/
220

321
namespace Zend\File;
422

@@ -11,9 +29,11 @@
1129

1230
/**
1331
* Locate files containing PHP classes, interfaces, or abstracts
14-
*
32+
*
33+
* @category Zend
1534
* @package Zend_File
16-
* @license New BSD {@link http://framework.zend.com/license/new-bsd}
35+
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
36+
* @license http://framework.zend.com/license/new-bsd New BSD License
1737
*/
1838
class ClassFileLocator extends FilterIterator
1939
{
@@ -23,8 +43,7 @@ class ClassFileLocator extends FilterIterator
2343
* Expects either a directory, or a DirectoryIterator (or its recursive variant)
2444
* instance.
2545
*
26-
* @param string|DirectoryIterator $dirOrIterator
27-
* @return void
46+
* @param string|DirectoryIterator $dirOrIterator
2847
*/
2948
public function __construct($dirOrIterator = '.')
3049
{

0 commit comments

Comments
 (0)