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