for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Tleckie\Assets\Versioned;
/**
* Class NullVersioned
*
* @package Tleckie\Assets\Versioned
* @category NullVersioned
* @author Teodoro Leckie Westberg <[email protected]>
*/
class NullVersioned implements VersionedInterface
{
* @var string
protected string $version = '';
protected string $format = '';
* @inheritdoc
public function version(): string
return $this->version;
}
public function applyVersion(string $asset): string
return $asset;