Skip to content

Commit 27a34aa

Browse files
authored
Merge pull request #570 from Arhell/upd
update src folder links
2 parents 017ad3b + a43fe15 commit 27a34aa

10 files changed

+49
-49
lines changed

src/Authenticator/HttpBasicAuthenticator.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\Authenticator;
1717

src/Authenticator/HttpDigestAuthenticator.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\Authenticator;
1717

src/Authenticator/SessionAuthenticator.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\Authenticator;
1717

src/Identity.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public function get($field)
124124
/**
125125
* Whether a offset exists
126126
*
127-
* @link http://php.net/manual/en/arrayaccess.offsetexists.php
127+
* @link https://php.net/manual/en/arrayaccess.offsetexists.php
128128
* @param mixed $offset Offset
129129
* @return bool
130130
*/
@@ -136,7 +136,7 @@ public function offsetExists($offset): bool
136136
/**
137137
* Offset to retrieve
138138
*
139-
* @link http://php.net/manual/en/arrayaccess.offsetget.php
139+
* @link https://php.net/manual/en/arrayaccess.offsetget.php
140140
* @param mixed $offset Offset
141141
* @return mixed
142142
*/
@@ -149,7 +149,7 @@ public function offsetGet($offset)
149149
/**
150150
* Offset to set
151151
*
152-
* @link http://php.net/manual/en/arrayaccess.offsetset.php
152+
* @link https://php.net/manual/en/arrayaccess.offsetset.php
153153
* @param mixed $offset The offset to assign the value to.
154154
* @param mixed $value Value
155155
* @throws \BadMethodCallException
@@ -164,7 +164,7 @@ public function offsetSet($offset, $value)
164164
/**
165165
* Offset to unset
166166
*
167-
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
167+
* @link https://php.net/manual/en/arrayaccess.offsetunset.php
168168
* @param mixed $offset Offset
169169
* @throws \BadMethodCallException
170170
* @return void

src/PasswordHasher/AbstractPasswordHasher.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\PasswordHasher;
1717

src/PasswordHasher/DefaultPasswordHasher.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\PasswordHasher;
1717

src/PasswordHasher/FallbackPasswordHasher.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\PasswordHasher;
1717

src/PasswordHasher/LegacyPasswordHasher.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\PasswordHasher;
1717

src/PasswordHasher/PasswordHasherFactory.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\PasswordHasher;
1717

src/PasswordHasher/PasswordHasherInterface.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
declare(strict_types=1);
33

44
/**
5-
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6-
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
77
*
88
* Licensed under The MIT License
99
* For full copyright and license information, please see the LICENSE.txt
1010
* Redistributions of files must retain the above copyright notice.
1111
*
12-
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13-
* @link http://cakephp.org CakePHP(tm) Project
14-
* @license http://www.opensource.org/licenses/mit-license.php MIT License
12+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13+
* @link https://cakephp.org CakePHP(tm) Project
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
1515
*/
1616
namespace Authentication\PasswordHasher;
1717

0 commit comments

Comments
 (0)