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.
Completed
Branch dev (231e41)
by Liuta
01:58
created
includes/class-xcloner-logger.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 	private $max_logger_files = 7;
11 11
 	private $main_logger_url;
12 12
 
13
-    /**
14
-     * Xcloner_Logger constructor.
15
-     * @param Xcloner $xcloner_container
16
-     * @param string $logger_name
17
-     * @throws Exception
18
-     */
19
-    public function __construct(Xcloner $xcloner_container, $logger_name = "xcloner_logger") {
13
+	/**
14
+	 * Xcloner_Logger constructor.
15
+	 * @param Xcloner $xcloner_container
16
+	 * @param string $logger_name
17
+	 * @throws Exception
18
+	 */
19
+	public function __construct(Xcloner $xcloner_container, $logger_name = "xcloner_logger") {
20 20
 		if (!$xcloner_container->get_xcloner_settings()) {
21 21
 			$xcloner_settings = new Xcloner_Settings($xcloner_container);
22 22
 		} else {
@@ -76,18 +76,18 @@  discard block
 block discarded – undo
76 76
 		//return $this;
77 77
 	}
78 78
 
79
-    /**
80
-     * @return string|null
81
-     */
82
-    function get_main_logger_url() {
79
+	/**
80
+	 * @return string|null
81
+	 */
82
+	function get_main_logger_url() {
83 83
 		return $this->main_logger_url;
84 84
 	}
85 85
 
86
-    /**
87
-     * @param int $totalLines
88
-     * @return array|bool
89
-     */
90
-    function getLastDebugLines($totalLines = 200) {
86
+	/**
87
+	 * @param int $totalLines
88
+	 * @return array|bool
89
+	 */
90
+	function getLastDebugLines($totalLines = 200) {
91 91
 		$lines = array();
92 92
 
93 93
 		if (!file_exists($this->main_logger_url) or !is_readable($this->main_logger_url)) {
Please login to merge, or discard this patch.
includes/class-xcloner-loader.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -59,24 +59,24 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	protected $filters;
61 61
 
62
-    /**
63
-     * @var xcloner_plugin
64
-     */
65
-    private $xcloner_plugin;
66
-
67
-    /**
68
-     * @var Xcloner
69
-     */
70
-    private $xcloner_container;
71
-
72
-
73
-    /**
74
-     * Initialize the collections used to maintain the actions and filters.
75
-     *
76
-     * Xcloner_Loader constructor.
77
-     * @param Xcloner $xcloner_container
78
-     */
79
-    public function __construct(Xcloner $xcloner_container)
62
+	/**
63
+	 * @var xcloner_plugin
64
+	 */
65
+	private $xcloner_plugin;
66
+
67
+	/**
68
+	 * @var Xcloner
69
+	 */
70
+	private $xcloner_container;
71
+
72
+
73
+	/**
74
+	 * Initialize the collections used to maintain the actions and filters.
75
+	 *
76
+	 * Xcloner_Loader constructor.
77
+	 * @param Xcloner $xcloner_container
78
+	 */
79
+	public function __construct(Xcloner $xcloner_container)
80 80
 	{
81 81
 
82 82
 		$this->actions = array();
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
 
87 87
 	}
88 88
 
89
-    /**
90
-     * Add XCloner to Admin Menu
91
-     */
92
-    public function xcloner_backup_add_admin_menu()
89
+	/**
90
+	 * Add XCloner to Admin Menu
91
+	 */
92
+	public function xcloner_backup_add_admin_menu()
93 93
 	{
94 94
 		if (function_exists('add_menu_page')) {
95 95
 			add_menu_page(__('Site Backup', 'xcloner-backup-and-restore'),
Please login to merge, or discard this patch.