Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
66.67% covered (warning)
66.67%
2 / 3
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
PropertyDefinitionName
66.67% covered (warning)
66.67%
2 / 3
0.00% covered (danger)
0.00%
0 / 1
2.15
0.00% covered (danger)
0.00%
0 / 1
 validate
66.67% covered (warning)
66.67%
2 / 3
0.00% covered (danger)
0.00%
0 / 1
2.15
1<?php
2namespace Apie\Maker\ValueObjects;
3
4use Apie\Core\Identifiers\CamelCaseSlug;
5use Apie\Serializer\Exceptions\ValidationException;
6use LogicException;
7
8final class PropertyDefinitionName extends CamelCaseSlug
9{
10    public static function validate(string $input): void
11    {
12        parent::validate($input);
13        if (strtolower($input) === 'id') {
14            throw ValidationException::createFromArray(['' => new LogicException('The name "id" is already reserved')]);
15        }
16    }
17}