Änderungen https Andy Müller rückgängig gemacht

This commit is contained in:
aschwarz
2023-04-26 12:10:03 +02:00
parent faad1bfa71
commit 6c8e6aff95
192 changed files with 243 additions and 243 deletions

View File

@ -61,7 +61,7 @@ $myCopy = clone $myObject;
- How do you create **deep** copies of your objects (i.e. copying also all the objects referenced in the properties)?
You use [`__clone()`](https://www.php.net/manual/en/language.oop5.cloning.php#object.clone) and implement the behavior
You use [`__clone()`](http://www.php.net/manual/en/language.oop5.cloning.php#object.clone) and implement the behavior
yourself.
- But how do you handle **cycles** in the association graph?
@ -173,7 +173,7 @@ $matcher = new PropertyMatcher('MyClass', 'id');
#### Type
The `TypeMatcher` will match any element by its type (instance of a class or any value that could be parameter of
[gettype()](https://php.net/manual/en/function.gettype.php) function):
[gettype()](http://php.net/manual/en/function.gettype.php) function):
```php
use DeepCopy\TypeMatcher\TypeMatcher;

View File

@ -16,7 +16,7 @@ class ReflectionHelper
* Standard \ReflectionClass->getProperties() does not return private properties from ancestor classes.
*
* @author muratyaman@gmail.com
* @see https://php.net/manual/en/reflectionclass.getproperties.php
* @see http://php.net/manual/en/reflectionclass.getproperties.php
*
* @param ReflectionClass $ref
*

View File

@ -18,7 +18,7 @@ class DateIntervalFilter implements TypeFilter
*
* @param DateInterval $element
*
* @see https://news.php.net/php.bugs/205076
* @see http://news.php.net/php.bugs/205076
*/
public function apply($element)
{