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 Ram extends AbstractPart
{
* Ram constructor.
* @param string $specification
public function __construct(string $specification)
parent::__construct($specification);
}