for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author : Jagepard <[email protected]>
* @license https://mit-license.org/ MIT
*/
namespace Creational\Builder\Hardware;
class Storage extends AbstractPart
{
* Storage constructor.
* @param string $volume
public function __construct(string $volume)
parent::__construct($volume);
}