PHP code example of andrzejkupczyk / ddd-building-blocks
1. Go to this page and download the library: Download andrzejkupczyk/ddd-building-blocks library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
andrzejkupczyk / ddd-building-blocks example snippets
namespace Brunswick\Billiards\Table;
use WebGarden\Model\ValueObject\Number\Natural;
final class Size extends Natural
{
protected static function validate($feet)
{
return parent::validate($feet)->between(7, 9);
}
}