for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tleckie\DesignPatterns\Decorator;
/**
* Class NullNormalize
*
* @package Tleckie\DesignPatterns\Decorator
* @author Teodoro Leckie Westberg <[email protected]>
*/
class NullNormalize implements NormalizeInterface
{
* @param string $text
* @return string
public function normalize(string $text): string
return $text;
}