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

assets/singlefile/basicClassInheritance.php (2 issues)

not multiple classes are defined in the same file.

Coding Style Compatibility Minor

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
/**
4
 * This is a class summary
5
 *
6
 * This is a class description.
7
 *
8
 * @version 1.0
9
 */
10
class A
11
{
12
    /** This is a property summary */
13
    public $property;
14
15
    /** This is a method summary */
16
    public function method()
17
    {
18
    }
19
}
20
21
class B extends A
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class should be in its own file to aid autoloaders.

Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.

Loading history...
22
{
23
    public $property;
24
25
    public function method()
26
    {
27
    }
28
}
29
30
class C extends B
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class should be in its own file to aid autoloaders.

Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.

Loading history...
31
{
32
    public $property;
33
34
    public function method()
35
    {
36
    }
37
}
38