diff options
author | ignace nyamagana butera <nyamsprod@gmail.com> | 2014-02-28 15:00:47 +0100 |
---|---|---|
committer | ignace nyamagana butera <nyamsprod@gmail.com> | 2014-02-28 15:00:47 +0100 |
commit | f8953568fa1b6910f0cb7e0ec4b861d47db34b17 (patch) | |
tree | f76fea2674a633f8cfb15174371caf3bbe5702c1 /src/Iterator/IteratorSortBy.php | |
parent | 4f1ed587c59c1524599457f8fcc562dcb5b845ed (diff) | |
parent | ef58410e9c67a734eb6bdf3a9264b7df6082f501 (diff) | |
download | csv-5.0.0.zip csv-5.0.0.tar.gz csv-5.0.0.tar.bz2 |
Merge pull request #17 from thephpleague/update-namespace5.0.0
Update namespace
Diffstat (limited to 'src/Iterator/IteratorSortBy.php')
-rw-r--r-- | src/Iterator/IteratorSortBy.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Iterator/IteratorSortBy.php b/src/Iterator/IteratorSortBy.php index c26e85c..0a0a604 100644 --- a/src/Iterator/IteratorSortBy.php +++ b/src/Iterator/IteratorSortBy.php @@ -1,13 +1,13 @@ <?php /** -* Bakame.csv - A lightweight CSV Coder/Decoder library +* League.csv - A lightweight CSV Coder/Decoder library * * @author Ignace Nyamagana Butera <nyamsprod@gmail.com> * @copyright 2014 Ignace Nyamagana Butera -* @link https://github.com/nyamsprod/Bakame.csv +* @link https://github.com/nyamsprod/League.csv * @license http://opensource.org/licenses/MIT -* @version 4.2.1 -* @package Bakame.csv +* @version 5.0.0 +* @package League.csv * * MIT LICENSE * @@ -30,7 +30,7 @@ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -namespace Bakame\Csv\Iterator; +namespace League\Csv\Iterator; use Iterator; use ArrayIterator; @@ -38,7 +38,7 @@ use ArrayIterator; /** * A Trait to sort an Iterator * - * @package Bakame.csv + * @package League.csv * @since 4.2.1 * */ |