Issues (215)

src/Exceptions/LockedPropertyException.php (1 issue)

1
<?php
2
3
namespace GloBee\PaymentApi\Exceptions;
4
5
class LockedPropertyException extends \Exception
6
{
7
    public function __construct($propertyName)
0 ignored issues
show
Coding Style Documentation introduced by
Missing function doc comment
Loading history...
8
    {
9
        parent::__construct('Property "'.$propertyName.'" is locked and can\'t be modified.');
10
    }
11
}
12