Skip to content

Commit 7075d9f

Browse files
committed
Update license and copyright in all files
1 parent 231d486 commit 7075d9f

12 files changed

+67
-419
lines changed

Diff for: LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GlobalState
22

3-
Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
3+
Copyright (c) 2001-2015, Sebastian Bergmann <[email protected]>.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

Diff for: src/Blacklist.php

+6-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,11 @@
11
<?php
2-
/**
3-
* GlobalState
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the GlobalState package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @author Sebastian Bergmann <[email protected]>
38-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
39-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
40-
* @link http://www.github.com/sebastianbergmann/global-state
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
419
*/
4210

4311
namespace SebastianBergmann\GlobalState;
@@ -48,7 +16,7 @@
4816
* A blacklist for global state elements that should not be snapshotted.
4917
*
5018
* @author Sebastian Bergmann <[email protected]>
51-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
19+
* @copyright Sebastian Bergmann <[email protected]>
5220
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5321
* @link http://www.github.com/sebastianbergmann/global-state
5422
*/

Diff for: src/CodeExporter.php

+6-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,11 @@
11
<?php
2-
/**
3-
* GlobalState
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the GlobalState package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @author Sebastian Bergmann <[email protected]>
38-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
39-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
40-
* @link http://www.github.com/sebastianbergmann/global-state
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
419
*/
4210

4311
namespace SebastianBergmann\GlobalState;
@@ -46,7 +14,7 @@
4614
* Exports parts of a Snapshot as PHP code.
4715
*
4816
* @author Sebastian Bergmann <[email protected]>
49-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
17+
* @copyright Sebastian Bergmann <[email protected]>
5018
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5119
* @link http://www.github.com/sebastianbergmann/global-state
5220
*/

Diff for: src/Exception.php

+6-38
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,18 @@
11
<?php
2-
/**
3-
* GlobalState
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the GlobalState package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @author Sebastian Bergmann <[email protected]>
38-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
39-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
40-
* @link http://www.github.com/sebastianbergmann/global-state
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
419
*/
4210

4311
namespace SebastianBergmann\GlobalState;
4412

4513
/**
4614
* @author Sebastian Bergmann <[email protected]>
47-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
15+
* @copyright Sebastian Bergmann <[email protected]>
4816
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
4917
* @link http://www.github.com/sebastianbergmann/global-state
5018
*/

Diff for: src/Restorer.php

+6-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,11 @@
11
<?php
2-
/**
3-
* GlobalState
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the GlobalState package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @author Sebastian Bergmann <[email protected]>
38-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
39-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
40-
* @link http://www.github.com/sebastianbergmann/global-state
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
419
*/
4210

4311
namespace SebastianBergmann\GlobalState;
@@ -48,7 +16,7 @@
4816
* Restorer of snapshots of global state.
4917
*
5018
* @author Sebastian Bergmann <[email protected]>
51-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
19+
* @copyright Sebastian Bergmann <[email protected]>
5220
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5321
* @link http://www.github.com/sebastianbergmann/global-state
5422
*/

Diff for: src/RuntimeException.php

+6-38
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,18 @@
11
<?php
2-
/**
3-
* GlobalState
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the GlobalState package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @author Sebastian Bergmann <[email protected]>
38-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
39-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
40-
* @link http://www.github.com/sebastianbergmann/global-state
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
419
*/
4210

4311
namespace SebastianBergmann\GlobalState;
4412

4513
/**
4614
* @author Sebastian Bergmann <[email protected]>
47-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
15+
* @copyright Sebastian Bergmann <[email protected]>
4816
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
4917
* @link http://www.github.com/sebastianbergmann/global-state
5018
*/

Diff for: src/Snapshot.php

+6-38
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,11 @@
11
<?php
2-
/**
3-
* GlobalState
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the GlobalState package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @author Sebastian Bergmann <[email protected]>
38-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
39-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
40-
* @link http://www.github.com/sebastianbergmann/global-state
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
419
*/
4210

4311
namespace SebastianBergmann\GlobalState;
@@ -49,7 +17,7 @@
4917
* A snapshot of global state.
5018
*
5119
* @author Sebastian Bergmann <[email protected]>
52-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
20+
* @copyright Sebastian Bergmann <[email protected]>
5321
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5422
* @link http://www.github.com/sebastianbergmann/global-state
5523
*/

0 commit comments

Comments
 (0)