Files
farmOS-dev/vendor/e0ipso/shaper/src/Transformation/TransformationBase.php
2024-12-10 15:08:16 +01:00

16 lines
307 B
PHP

<?php
namespace Shaper\Transformation;
/**
* Base implementation for transformation classes.
*
* @package Shaper
*/
abstract class TransformationBase implements TransformationInterface, TransformationValidationInterface {
use TransformationValidationTrait;
use TransformationTransformerTrait;
}