Skip to content

Commit 2deb24c

Browse files
Update email address
1 parent f081e67 commit 2deb24c

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

File/Iterator.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* php-file-iterator
44
*
5-
* Copyright (c) 2009-2013, Sebastian Bergmann <sb@sebastian-bergmann.de>.
5+
* Copyright (c) 2009-2013, Sebastian Bergmann <sebastian@phpunit.de>.
66
* All rights reserved.
77
*
88
* Redistribution and use in source and binary forms, with or without
@@ -35,8 +35,8 @@
3535
* POSSIBILITY OF SUCH DAMAGE.
3636
*
3737
* @package File
38-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
39-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
38+
* @author Sebastian Bergmann <sebastian@phpunit.de>
39+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
4040
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
4141
* @since File available since Release 1.0.0
4242
*/
@@ -45,8 +45,8 @@
4545
* FilterIterator implementation that filters files based on prefix(es) and/or
4646
* suffix(es). Hidden files and files from hidden directories are also filtered.
4747
*
48-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
49-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
48+
* @author Sebastian Bergmann <sebastian@phpunit.de>
49+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
5050
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5151
* @version Release: @package_version@
5252
* @link http://github.com/sebastianbergmann/php-file-iterator/tree

File/Iterator/Autoload.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* php-file-iterator
44
*
5-
* Copyright (c) 2009-2013, Sebastian Bergmann <sb@sebastian-bergmann.de>.
5+
* Copyright (c) 2009-2013, Sebastian Bergmann <sebastian@phpunit.de>.
66
* All rights reserved.
77
*
88
* Redistribution and use in source and binary forms, with or without
@@ -35,8 +35,8 @@
3535
* POSSIBILITY OF SUCH DAMAGE.
3636
*
3737
* @package File
38-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
39-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
38+
* @author Sebastian Bergmann <sebastian@phpunit.de>
39+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
4040
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
4141
* @since File available since Release 1.3.0
4242
*/

File/Iterator/Facade.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* php-file-iterator
44
*
5-
* Copyright (c) 2009-2013, Sebastian Bergmann <sb@sebastian-bergmann.de>.
5+
* Copyright (c) 2009-2013, Sebastian Bergmann <sebastian@phpunit.de>.
66
* All rights reserved.
77
*
88
* Redistribution and use in source and binary forms, with or without
@@ -35,8 +35,8 @@
3535
* POSSIBILITY OF SUCH DAMAGE.
3636
*
3737
* @package File
38-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
39-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
38+
* @author Sebastian Bergmann <sebastian@phpunit.de>
39+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
4040
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
4141
* @since File available since Release 1.3.0
4242
*/
@@ -47,8 +47,8 @@
4747
* RecursiveDirectoryIterator for each given path. The list of unique
4848
* files is returned as an array.
4949
*
50-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
51-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
50+
* @author Sebastian Bergmann <sebastian@phpunit.de>
51+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
5252
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5353
* @version Release: @package_version@
5454
* @link http://github.com/sebastianbergmann/php-file-iterator/tree

File/Iterator/Factory.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* php-file-iterator
44
*
5-
* Copyright (c) 2009-2013, Sebastian Bergmann <sb@sebastian-bergmann.de>.
5+
* Copyright (c) 2009-2013, Sebastian Bergmann <sebastian@phpunit.de>.
66
* All rights reserved.
77
*
88
* Redistribution and use in source and binary forms, with or without
@@ -35,8 +35,8 @@
3535
* POSSIBILITY OF SUCH DAMAGE.
3636
*
3737
* @package File
38-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
39-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
38+
* @author Sebastian Bergmann <sebastian@phpunit.de>
39+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
4040
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
4141
* @since File available since Release 1.1.0
4242
*/
@@ -46,8 +46,8 @@
4646
* an AppendIterator that contains an RecursiveDirectoryIterator for each given
4747
* path.
4848
*
49-
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
50-
* @copyright 2009-2013 Sebastian Bergmann <sb@sebastian-bergmann.de>
49+
* @author Sebastian Bergmann <sebastian@phpunit.de>
50+
* @copyright 2009-2013 Sebastian Bergmann <sebastian@phpunit.de>
5151
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5252
* @version Release: @package_version@
5353
* @link http://github.com/sebastianbergmann/php-file-iterator/tree

0 commit comments

Comments
 (0)