GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

FS_Billing::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 13 and the first side effect is on line 10.

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.

Loading history...
2
	/**
3
	 * @package     Freemius for EDD Add-On
4
	 * @copyright   Copyright (c) 2016, Freemius, Inc.
5
	 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6
	 * @since       1.0.0
7
	 */
8
9
	if ( ! defined( 'ABSPATH' ) ) {
10
		exit;
11
	}
12
13
	class FS_Billing extends FS_Entity {
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
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 ) {
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
89
			parent::__construct( $event );
90
		}
91
92
		static function get_type() {
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
93
			return 'billing';
94
		}
95
	}