1 | <?php |
||
13 | class FS_Affiliate extends FS_Scope_Entity { |
||
14 | |||
15 | #region Properties |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | public $paypal_email; |
||
21 | /** |
||
22 | * @var number |
||
23 | */ |
||
24 | public $custom_affiliate_terms_id; |
||
25 | /** |
||
26 | * @var boolean |
||
27 | */ |
||
28 | public $is_using_custom_terms; |
||
29 | /** |
||
30 | * @var string status Enum: `pending`, `rejected`, `suspended`, or `active`. Defaults to `pending`. |
||
31 | */ |
||
32 | public $status; |
||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | public $domain; |
||
37 | |||
38 | #endregion Properties |
||
39 | |||
40 | /** |
||
41 | * @author Leo Fajardo |
||
42 | * |
||
43 | * @return bool |
||
44 | */ |
||
45 | function is_active() { |
||
48 | |||
49 | /** |
||
50 | * @author Leo Fajardo |
||
51 | * |
||
52 | * @return bool |
||
53 | */ |
||
54 | function is_pending() { |
||
57 | |||
58 | /** |
||
59 | * @author Leo Fajardo |
||
60 | * |
||
61 | * @return bool |
||
62 | */ |
||
63 | function is_suspended() { |
||
66 | |||
67 | /** |
||
68 | * @author Leo Fajardo |
||
69 | * |
||
70 | * @return bool |
||
71 | */ |
||
72 | function is_rejected() { |
||
75 | |||
76 | /** |
||
77 | * @author Leo Fajardo |
||
78 | * |
||
79 | * @return bool |
||
80 | */ |
||
81 | function is_blocked() { |
||
84 | } |
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.