for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\Service\Volume;
use TheAentMachine\Service\Enum\VolumeTypeEnum;
class TmpfsVolume extends Volume
{
/**
* BindVolume constructor.
* @param string $source
*/
public function __construct(string $source)
parent::__construct(VolumeTypeEnum::TMPFS_VOLUME, $source);
}
* Specify data which should be serialized to JSON
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
* @return array data which can be serialized by <b>json_encode</b>,
* which is a value of any type other than a resource.
* @since 5.4.0
public function jsonSerialize(): array
return array(
'type' => $this->type,
'source' => $this->source,
);