1 | <?php |
||
13 | class FS_Billing extends FS_Entity { |
||
14 | |||
15 | #region Properties |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | public $entity_id; |
||
21 | /** |
||
22 | * @var string (Enum) Linked entity type. One of: developer, plugin, user, install |
||
23 | */ |
||
24 | public $entity_type; |
||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | public $business_name; |
||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | public $first; |
||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | public $last; |
||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | public $email; |
||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | public $phone; |
||
45 | /** |
||
46 | * @var string |
||
47 | */ |
||
48 | public $website; |
||
49 | /** |
||
50 | * @var string Tax or VAT ID. |
||
51 | */ |
||
52 | public $tax_id; |
||
53 | /** |
||
54 | * @var string |
||
55 | */ |
||
56 | public $address_street; |
||
57 | /** |
||
58 | * @var string |
||
59 | */ |
||
60 | public $address_apt; |
||
61 | /** |
||
62 | * @var string |
||
63 | */ |
||
64 | public $address_city; |
||
65 | /** |
||
66 | * @var string |
||
67 | */ |
||
68 | public $address_country; |
||
69 | /** |
||
70 | * @var string Two chars country code. |
||
71 | */ |
||
72 | public $address_country_code; |
||
73 | /** |
||
74 | * @var string |
||
75 | */ |
||
76 | public $address_state; |
||
77 | /** |
||
78 | * @var number Numeric ZIP code (cab be with leading zeros). |
||
79 | */ |
||
80 | public $address_zip; |
||
81 | |||
82 | #endregion Properties |
||
83 | |||
84 | |||
85 | /** |
||
86 | * @param object|bool $event |
||
87 | */ |
||
88 | function __construct( $event = false ) { |
||
91 | |||
92 | static function get_type() { |
||
95 | } |
The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.
The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.
To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.