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;
abstract class AbstractPart
{
* @var string
protected $value;
* AbstractParameter constructor.
* @param string $value
public function __construct(string $value)
$this->value = $value;
}
* @return string
public function getValue(): string
return $this->value;