Completed
Push — master ( 91a776...8c22b7 )
by Sebastian
07:46 queued 02:57
created

src/Exceptions/InvalidProperty.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Spatie\SchemaOrg\Exceptions;
4
5
use Exception;
6
7
class InvalidProperty extends Exception
0 ignored issues
show
Comprehensibility Best Practice introduced by
The type Spatie\SchemaOrg\Exceptions\InvalidProperty has been defined more than once; this definition is ignored, only the first definition in generator/templates/stat...ons/InvalidProperty.php (L7-9) is considered.

This check looks for classes that have been defined more than once.

If you can, we would recommend to use standard object-oriented programming techniques. For example, to avoid multiple types, it might make sense to create a common interface, and then multiple, different implementations for that interface.

This also has the side-effect of providing you with better IDE auto-completion, static analysis and also better OPCode caching from PHP.

Loading history...
8
{
9
}
10