Issues (215)

src/Exceptions/UnknownPropertyException.php (1 issue)

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