Completed
Push — develop ( 8eb671...133594 )
by Mike
19:30 queued 09:24
created

tests/data/file-level/PackagePrecedesDocBlock.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
 * This is a file-level DocBlock
4
 *
5
 * No warning will be raised.  This is the recommended usage
6
 * @package SomePackage
7
 */
8
/**
9
 * This is a not a file-level DocBlock, because it precedes a class declaration
10
 *
11
 * This is also the recommended usage
12
 * @package SomePackage
13
 */
14
class foo
0 ignored issues
show
Comprehensibility Best Practice introduced by
The type foo has been defined more than once; this definition is ignored, only the first definition in tests/data/file-level/NoPackagePrecedesClass.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...
15
{
16
}
17