Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ObjectIsImmutable
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Core\Exceptions;
3
4use Apie\Core\ValueObjects\Utils;
5
6final class ObjectIsImmutable extends ApieException
7{
8    public function __construct(object $object)
9    {
10        parent::__construct(
11            sprintf(
12                'Object %s is immutable and can not be altered',
13                Utils::displayMixedAsString($object)
14            )
15        );
16    }
17}