for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Passbook\Exception;
/**
* Thrown when validation of a pass fails.
*/
class PassInvalidException extends \RuntimeException
{
* Construct a PassInvalidException either with or without an array of errors.
*
* @param string[]|null $errors
public function __construct(array $errors = null)
$this->errors = $errors ? $errors : array();
errors
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
class MyClass { } $x = new MyClass(); $x->foo = true;
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:
class MyClass { public $foo; } $x = new MyClass(); $x->foo = true;
}
* Returns the errors with the pass.
* @return string[]
public function getErrors()
return $this->errors;
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: