MDL-81924 core: Include Spatie\Cloneable

Originally implemented as MDL-80960.
This commit is contained in:
Andrew Nicols 2024-02-06 13:21:06 +08:00 committed by Huong Nguyen
parent 525fc81cf6
commit 58acf94c96
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A
6 changed files with 189 additions and 0 deletions

View File

@ -149,6 +149,8 @@ class component {
\Invoker::class => 'lib/php-di/invoker/src',
\FastRoute::class => 'lib/nikic/fast-route/src',
\Slim::class => 'lib/slim/slim/Slim',
\libphonenumber::class => 'lib/giggsey/libphonenumber-for-php-lite/src',
\Spatie\Cloneable::class => 'lib/spatie/php-cloneable/src',
];
/**

View File

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) spatie <brent@spatie.be>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@ -0,0 +1,105 @@
# A trait that allows you to clone readonly properties in PHP 8.1
[![Latest Version on Packagist](https://img.shields.io/packagist/v/spatie/php-cloneable.svg?style=flat-square)](https://packagist.org/packages/spatie/php-cloneable)
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/spatie/php-cloneable/run-tests.yml?label=tests&branch=main)](https://github.com/spatie/php-cloneable/actions?query=workflow%3ATests+branch%3Amaster)
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/spatie/php-cloneable/php-cs-fixer.yml?label=code%20style&branch=main)](https://github.com/spatie/php-cloneable/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amaster)
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/php-cloneable.svg?style=flat-square)](https://packagist.org/packages/spatie/php-cloneable)
This package provides a trait that allows you to clone objects with readonly properties in PHP 8.1. You can read an in-depth explanation as to why this is necessary [here](https://stitcher.io/blog/cloning-readonly-properties-in-php-81).
## Support us
[<img src="https://github-ads.s3.eu-central-1.amazonaws.com/php-cloneable.jpg?t=1" width="419px" />](https://spatie.be/github-ad-click/php-cloneable)
We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).
## Installation
You can install the package via composer:
```bash
composer require spatie/php-cloneable
```
## Usage
In PHP 8.1, readonly properties aren't allowed to be overridden as soon as they are initialized. That also means that cloning an object and changing one of its readonly properties isn't allowed. It's likely that PHP will get some kind of `clone with` functionality in the future, but for now you can work around this issue by using this package.
```php
class Post
{
use Cloneable;
public readonly string $title;
public readonly string $author;
public function __construct(string $title, string $author)
{
$this->title = $title;
$this->author = $author;
}
}
```
The `Spatie\Cloneable\Cloneable` adds a `with` method to whatever class you want to be cloneable, which you can pass one or more parameters. Note that you're required to use named arguments.
```php
$postA = new Post(title: 'a', author: 'Brent');
$postB = $postA->with(title: 'b');
$postC = $postA->with(title: 'c', author: 'Freek');
```
A common practice would be to implement specific `with*` methods on the classes themselves:
```php
class Post
{
// …
public function withTitle(string $title): self
{
return $this->with(title: $title);
}
public function withAuthor(string $author): self
{
return $this->with(author: $author);
}
}
```
### Caveats
- This package will skip calling the constructor when cloning an object, meaning any logic in the constructor won't be executed.
- The `with` method will do a shallow clone, meaning that nested objects aren't cloned as well.
## Testing
```bash
composer test
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Brent Roose](https://github.com/brendt_gd)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

View File

@ -0,0 +1,14 @@
# Spatie's Cloneable trait
## Installation
1. Visit https://github.com/spatie/php-cloneable/
2. Download the latest release
3. Unzip in this folder
4. Update `thirdpartylibs.xml`
5. Remove any unnecessary files, including:
- Any tests
- CHANGELOG.md
- composer.json
- psalm.xml.dist
- undo_configure.sh

View File

@ -0,0 +1,40 @@
<?php
namespace Spatie\Cloneable;
use ReflectionClass;
trait Cloneable
{
public function with(...$values): static
{
$refClass = new ReflectionClass(static::class);
$clone = $refClass->newInstanceWithoutConstructor();
foreach ($refClass->getProperties() as $property) {
if ($property->isStatic()) {
continue;
}
$objectField = $property->getName();
if (array_key_exists($objectField, $values)) {
$objectValue = $values[$objectField];
} elseif ($property->isInitialized($this)) {
$objectValue = $property->getValue($this);
} else {
continue;
}
$declarationScope = $property->getDeclaringClass()->getName();
if ($declarationScope === self::class) {
$clone->$objectField = $objectValue;
} else {
(fn () => $this->$objectField = $objectValue)
->bindTo($clone, $declarationScope)();
}
}
return $clone;
}
}

View File

@ -808,4 +808,11 @@ All rights reserved.</copyright>
<licenseversion>3-Clause</licenseversion>
<repository>https://github.com/nikic/FastRoute</repository>
</library>
<library>
<location>spatie/php-cloneable</location>
<name>PHP Cloneable</name>
<version>1.0.2</version>
<license>MIT</license>
<repository>https://github.com/spatie/php-cloneable</repository>
</library>
</libraries>