Passed
Push — main ( cae36e...7a0c69 )
by Paul
03:59
created
compatibility.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
  * @see https://docs.gravityforms.com/gform_noconflict_scripts/
8 8
  */
9 9
 add_filter('gform_noconflict_scripts', function (array $scripts) {
10
-    $scripts[] = 'blackbar';
11
-    return $scripts;
10
+	$scripts[] = 'blackbar';
11
+	return $scripts;
12 12
 });
13 13
 
14 14
 /*
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * @see https://docs.gravityforms.com/gform_noconflict_styles/
17 17
  */
18 18
 add_filter('gform_noconflict_styles', function (array $styles) {
19
-    $styles[] = 'blackbar';
20
-    $styles[] = 'blackbar-syntax';
21
-    return $styles;
19
+	$styles[] = 'blackbar';
20
+	$styles[] = 'blackbar-syntax';
21
+	return $styles;
22 22
 });
Please login to merge, or discard this patch.
activate.php 1 patch
Indentation   +126 added lines, -126 removed lines patch added patch discarded remove patch
@@ -8,141 +8,141 @@
 block discarded – undo
8 8
  */
9 9
 class GL_Plugin_Check_v6
10 10
 {
11
-    const MIN_PHP_VERSION = '7.2';
12
-    const MIN_WORDPRESS_VERSION = '5.8';
11
+	const MIN_PHP_VERSION = '7.2';
12
+	const MIN_WORDPRESS_VERSION = '5.8';
13 13
 
14
-    /**
15
-     * @var array
16
-     */
17
-    public $versions;
14
+	/**
15
+	 * @var array
16
+	 */
17
+	public $versions;
18 18
 
19
-    /**
20
-     * @var string
21
-     */
22
-    protected $file;
19
+	/**
20
+	 * @var string
21
+	 */
22
+	protected $file;
23 23
 
24
-    /**
25
-     * @param string $file
26
-     */
27
-    public function __construct($file)
28
-    {
29
-        $this->file = realpath($file);
30
-        $versionRequirements = get_file_data($this->file, [
31
-            'php' => 'Requires PHP',
32
-            'wordpress' => 'Requires at least',
33
-        ]);
34
-        $this->versions = wp_parse_args(array_filter($versionRequirements), [
35
-            'php' => static::MIN_PHP_VERSION,
36
-            'wordpress' => static::MIN_WORDPRESS_VERSION,
37
-        ]);
38
-    }
24
+	/**
25
+	 * @param string $file
26
+	 */
27
+	public function __construct($file)
28
+	{
29
+		$this->file = realpath($file);
30
+		$versionRequirements = get_file_data($this->file, [
31
+			'php' => 'Requires PHP',
32
+			'wordpress' => 'Requires at least',
33
+		]);
34
+		$this->versions = wp_parse_args(array_filter($versionRequirements), [
35
+			'php' => static::MIN_PHP_VERSION,
36
+			'wordpress' => static::MIN_WORDPRESS_VERSION,
37
+		]);
38
+	}
39 39
 
40
-    /**
41
-     * @return bool
42
-     */
43
-    public function canProceed()
44
-    {
45
-        if ($this->isValid()) {
46
-            return true;
47
-        }
48
-        add_action('activated_plugin', [$this, 'deactivate']);
49
-        add_action('admin_notices', [$this, 'deactivate']);
50
-        return false;
51
-    }
40
+	/**
41
+	 * @return bool
42
+	 */
43
+	public function canProceed()
44
+	{
45
+		if ($this->isValid()) {
46
+			return true;
47
+		}
48
+		add_action('activated_plugin', [$this, 'deactivate']);
49
+		add_action('admin_notices', [$this, 'deactivate']);
50
+		return false;
51
+	}
52 52
 
53
-    /**
54
-     * @return bool
55
-     */
56
-    public function isPhpValid()
57
-    {
58
-        return version_compare(PHP_VERSION, $this->versions['php'], '>=');
59
-    }
53
+	/**
54
+	 * @return bool
55
+	 */
56
+	public function isPhpValid()
57
+	{
58
+		return version_compare(PHP_VERSION, $this->versions['php'], '>=');
59
+	}
60 60
 
61
-    /**
62
-     * @return bool
63
-     */
64
-    public function isValid()
65
-    {
66
-        return $this->isPhpValid() && $this->isWpValid();
67
-    }
61
+	/**
62
+	 * @return bool
63
+	 */
64
+	public function isValid()
65
+	{
66
+		return $this->isPhpValid() && $this->isWpValid();
67
+	}
68 68
 
69
-    /**
70
-     * @return bool
71
-     */
72
-    public function isWpValid()
73
-    {
74
-        global $wp_version;
75
-        return version_compare($wp_version, $this->versions['wordpress'], '>=');
76
-    }
69
+	/**
70
+	 * @return bool
71
+	 */
72
+	public function isWpValid()
73
+	{
74
+		global $wp_version;
75
+		return version_compare($wp_version, $this->versions['wordpress'], '>=');
76
+	}
77 77
 
78
-    /**
79
-     * @param string $plugin
80
-     * @return void
81
-     */
82
-    public function deactivate($plugin)
83
-    {
84
-        if ($this->isValid()) {
85
-            return;
86
-        }
87
-        $pluginSlug = plugin_basename($this->file);
88
-        if ($plugin == $pluginSlug) {
89
-            $this->redirect(); // exit
90
-        }
91
-        $pluginData = get_file_data($this->file, ['name' => 'Plugin Name'], 'plugin');
92
-        deactivate_plugins($pluginSlug);
93
-        $this->printNotice($pluginData['name']);
94
-    }
78
+	/**
79
+	 * @param string $plugin
80
+	 * @return void
81
+	 */
82
+	public function deactivate($plugin)
83
+	{
84
+		if ($this->isValid()) {
85
+			return;
86
+		}
87
+		$pluginSlug = plugin_basename($this->file);
88
+		if ($plugin == $pluginSlug) {
89
+			$this->redirect(); // exit
90
+		}
91
+		$pluginData = get_file_data($this->file, ['name' => 'Plugin Name'], 'plugin');
92
+		deactivate_plugins($pluginSlug);
93
+		$this->printNotice($pluginData['name']);
94
+	}
95 95
 
96
-    /**
97
-     * @return array
98
-     */
99
-    protected function getMessages()
100
-    {
101
-        return [
102
-            'notice' => _x('The %s plugin was deactivated.', 'admin-text', 'blackbar'),
103
-            'php_version' => _x('PHP version', 'admin-text', 'blackbar'),
104
-            'rollback' => _x('You can use the %s plugin to restore %s to the previous version.', 'admin-text', 'blackbar'),
105
-            'update_php' => _x('Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'admin-text', 'blackbar'),
106
-            'update_wp' => _x('Update WordPress', 'admin-text', 'blackbar'),
107
-            'wp_version' => _x('WordPress version', 'admin-text', 'blackbar'),
108
-            'wrong_version' => _x('This plugin requires %s or greater in order to work properly.', 'admin-text', 'blackbar'),
109
-        ];
110
-    }
96
+	/**
97
+	 * @return array
98
+	 */
99
+	protected function getMessages()
100
+	{
101
+		return [
102
+			'notice' => _x('The %s plugin was deactivated.', 'admin-text', 'blackbar'),
103
+			'php_version' => _x('PHP version', 'admin-text', 'blackbar'),
104
+			'rollback' => _x('You can use the %s plugin to restore %s to the previous version.', 'admin-text', 'blackbar'),
105
+			'update_php' => _x('Please contact your hosting provider or server administrator to upgrade the version of PHP on your server (your server is running PHP version %s), or try to find an alternative plugin.', 'admin-text', 'blackbar'),
106
+			'update_wp' => _x('Update WordPress', 'admin-text', 'blackbar'),
107
+			'wp_version' => _x('WordPress version', 'admin-text', 'blackbar'),
108
+			'wrong_version' => _x('This plugin requires %s or greater in order to work properly.', 'admin-text', 'blackbar'),
109
+		];
110
+	}
111 111
 
112
-    /**
113
-     * @param string $pluginName
114
-     * @return void
115
-     */
116
-    protected function printNotice($pluginName)
117
-    {
118
-        $noticeTemplate = '<div id="message" class="notice notice-error error is-dismissible"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>';
119
-        $messages = $this->getMessages();
120
-        $rollbackMessage = sprintf('<strong>'.$messages['rollback'].'</strong>', '<a href="https://wordpress.org/plugins/wp-rollback/" target="_blank">WP Rollback</a>', $pluginName);
121
-        if (!$this->isPhpValid()) {
122
-            printf($noticeTemplate,
123
-                sprintf($messages['notice'], $pluginName),
124
-                sprintf($messages['wrong_version'], $messages['php_version'].' '.$this->versions['php']),
125
-                sprintf($messages['update_php'], PHP_VERSION).'</p><p>'.$rollbackMessage
126
-            );
127
-        } elseif (!$this->isWpValid()) {
128
-            printf($noticeTemplate,
129
-                sprintf($messages['notice'], $pluginName),
130
-                sprintf($messages['wrong_version'], $messages['wp_version'].' '.$this->versions['wordpress']),
131
-                $rollbackMessage.'</p><p>'.sprintf('<a href="%s">%s</a>', admin_url('update-core.php'), $messages['update_wp'])
132
-            );
133
-        }
134
-    }
112
+	/**
113
+	 * @param string $pluginName
114
+	 * @return void
115
+	 */
116
+	protected function printNotice($pluginName)
117
+	{
118
+		$noticeTemplate = '<div id="message" class="notice notice-error error is-dismissible"><p><strong>%s</strong></p><p>%s</p><p>%s</p></div>';
119
+		$messages = $this->getMessages();
120
+		$rollbackMessage = sprintf('<strong>'.$messages['rollback'].'</strong>', '<a href="https://wordpress.org/plugins/wp-rollback/" target="_blank">WP Rollback</a>', $pluginName);
121
+		if (!$this->isPhpValid()) {
122
+			printf($noticeTemplate,
123
+				sprintf($messages['notice'], $pluginName),
124
+				sprintf($messages['wrong_version'], $messages['php_version'].' '.$this->versions['php']),
125
+				sprintf($messages['update_php'], PHP_VERSION).'</p><p>'.$rollbackMessage
126
+			);
127
+		} elseif (!$this->isWpValid()) {
128
+			printf($noticeTemplate,
129
+				sprintf($messages['notice'], $pluginName),
130
+				sprintf($messages['wrong_version'], $messages['wp_version'].' '.$this->versions['wordpress']),
131
+				$rollbackMessage.'</p><p>'.sprintf('<a href="%s">%s</a>', admin_url('update-core.php'), $messages['update_wp'])
132
+			);
133
+		}
134
+	}
135 135
 
136
-    /**
137
-     * @return void
138
-     */
139
-    protected function redirect()
140
-    {
141
-        wp_safe_redirect(self_admin_url(sprintf('plugins.php?plugin_status=%s&paged=%s&s=%s',
142
-            filter_input(INPUT_GET, 'plugin_status'),
143
-            filter_input(INPUT_GET, 'paged'),
144
-            filter_input(INPUT_GET, 's')
145
-        )));
146
-        exit;
147
-    }
136
+	/**
137
+	 * @return void
138
+	 */
139
+	protected function redirect()
140
+	{
141
+		wp_safe_redirect(self_admin_url(sprintf('plugins.php?plugin_status=%s&paged=%s&s=%s',
142
+			filter_input(INPUT_GET, 'plugin_status'),
143
+			filter_input(INPUT_GET, 'paged'),
144
+			filter_input(INPUT_GET, 's')
145
+		)));
146
+		exit;
147
+	}
148 148
 }
Please login to merge, or discard this patch.
blackbar.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,13 +20,13 @@
 block discarded – undo
20 20
 defined('ABSPATH') || exit;
21 21
 
22 22
 if (!class_exists('GL_Plugin_Check_v6')) {
23
-    require_once __DIR__.'/activate.php';
23
+	require_once __DIR__.'/activate.php';
24 24
 }
25 25
 if ((new GL_Plugin_Check_v6(__FILE__))->canProceed()) {
26
-    require_once __DIR__.'/autoload.php';
27
-    require_once __DIR__.'/compatibility.php';
28
-    if (!defined('SAVEQUERIES')) {
29
-        define('SAVEQUERIES', 1);
30
-    }
31
-    GeminiLabs\BlackBar\Application::load()->init();
26
+	require_once __DIR__.'/autoload.php';
27
+	require_once __DIR__.'/compatibility.php';
28
+	if (!defined('SAVEQUERIES')) {
29
+		define('SAVEQUERIES', 1);
30
+	}
31
+	GeminiLabs\BlackBar\Application::load()->init();
32 32
 }
Please login to merge, or discard this patch.
plugin/Dump.php 1 patch
Indentation   +127 added lines, -127 removed lines patch added patch discarded remove patch
@@ -7,142 +7,142 @@
 block discarded – undo
7 7
  */
8 8
 class Dump
9 9
 {
10
-    public $depth;
11
-    public $ignore;
10
+	public $depth;
11
+	public $ignore;
12 12
 
13
-    protected $level = 0;
14
-    protected $result = [];
15
-    protected $stack = [];
13
+	protected $level = 0;
14
+	protected $result = [];
15
+	protected $stack = [];
16 16
 
17
-    /**
18
-     * @param mixed $value
19
-     */
20
-    public function dump($value, int $depth = 3, array $ignore = []): string
21
-    {
22
-        $this->depth = $depth;
23
-        $this->ignore = $ignore;
24
-        $this->reset();
25
-        $this->inspect($value);
26
-        $result = implode('', $this->result);
27
-        $result = rtrim($result, "\n");
28
-        $this->reset();
29
-        return $result;
30
-    }
17
+	/**
18
+	 * @param mixed $value
19
+	 */
20
+	public function dump($value, int $depth = 3, array $ignore = []): string
21
+	{
22
+		$this->depth = $depth;
23
+		$this->ignore = $ignore;
24
+		$this->reset();
25
+		$this->inspect($value);
26
+		$result = implode('', $this->result);
27
+		$result = rtrim($result, "\n");
28
+		$this->reset();
29
+		return $result;
30
+	}
31 31
 
32
-    protected function formatKey(string $key): string
33
-    {
34
-        $result = [];
35
-        $result[] = str_repeat(' ', $this->level * 4).'[';
36
-        if (is_string($key) && "\0" === $key[0]) {
37
-            $keyParts = explode("\0", $key);
38
-            $result[] = $keyParts[2].(('*' === $keyParts[1]) ? ':protected' : ':private');
39
-        } else {
40
-            $result[] = $key;
41
-        }
42
-        $result[] = '] => ';
43
-        return implode('', $result);
44
-    }
32
+	protected function formatKey(string $key): string
33
+	{
34
+		$result = [];
35
+		$result[] = str_repeat(' ', $this->level * 4).'[';
36
+		if (is_string($key) && "\0" === $key[0]) {
37
+			$keyParts = explode("\0", $key);
38
+			$result[] = $keyParts[2].(('*' === $keyParts[1]) ? ':protected' : ':private');
39
+		} else {
40
+			$result[] = $key;
41
+		}
42
+		$result[] = '] => ';
43
+		return implode('', $result);
44
+	}
45 45
 
46
-    /**
47
-     * @param mixed $subject
48
-     */
49
-    protected function inspect($subject): void
50
-    {
51
-        ++$this->level;
52
-        if ($subject instanceof \Closure) {
53
-            $this->inspectClosure($subject);
54
-        } elseif (is_object($subject)) {
55
-            $this->inspectObject($subject);
56
-        } elseif (is_array($subject)) {
57
-            $this->inspectArray($subject);
58
-        } else {
59
-            $this->inspectPrimitive($subject);
60
-        }
61
-        --$this->level;
62
-    }
46
+	/**
47
+	 * @param mixed $subject
48
+	 */
49
+	protected function inspect($subject): void
50
+	{
51
+		++$this->level;
52
+		if ($subject instanceof \Closure) {
53
+			$this->inspectClosure($subject);
54
+		} elseif (is_object($subject)) {
55
+			$this->inspectObject($subject);
56
+		} elseif (is_array($subject)) {
57
+			$this->inspectArray($subject);
58
+		} else {
59
+			$this->inspectPrimitive($subject);
60
+		}
61
+		--$this->level;
62
+	}
63 63
 
64
-    protected function inspectArray(array $subject): void
65
-    {
66
-        if ($this->level > $this->depth) {
67
-            $this->result[] = "Nested Array\n";
68
-            return;
69
-        }
70
-        if (empty($subject)) {
71
-            $this->result[] = "Array ()\n";
72
-            return;
73
-        }
74
-        $this->result[] = "Array (\n";
75
-        foreach ($subject as $key => $val) {
76
-            if (false === $this->isIgnoredKey($key)) {
77
-                $this->result[] = str_repeat(' ', $this->level * 4).'['.$key.'] => ';
78
-                $this->inspect($val);
79
-            }
80
-        }
81
-        $this->result[] = str_repeat(' ', ($this->level - 1) * 4).")\n";
82
-    }
64
+	protected function inspectArray(array $subject): void
65
+	{
66
+		if ($this->level > $this->depth) {
67
+			$this->result[] = "Nested Array\n";
68
+			return;
69
+		}
70
+		if (empty($subject)) {
71
+			$this->result[] = "Array ()\n";
72
+			return;
73
+		}
74
+		$this->result[] = "Array (\n";
75
+		foreach ($subject as $key => $val) {
76
+			if (false === $this->isIgnoredKey($key)) {
77
+				$this->result[] = str_repeat(' ', $this->level * 4).'['.$key.'] => ';
78
+				$this->inspect($val);
79
+			}
80
+		}
81
+		$this->result[] = str_repeat(' ', ($this->level - 1) * 4).")\n";
82
+	}
83 83
 
84
-    protected function inspectClosure(\Closure $subject): void
85
-    {
86
-        $reflection = new \ReflectionFunction($subject);
87
-        $params = array_map(function ($param) {
88
-            return ($param->isPassedByReference() ? '&$' : '$').$param->name;
89
-        }, $reflection->getParameters());
90
-        $this->result[] = 'Closure ('.implode(', ', $params).') { ... }'."\n";
91
-    }
84
+	protected function inspectClosure(\Closure $subject): void
85
+	{
86
+		$reflection = new \ReflectionFunction($subject);
87
+		$params = array_map(function ($param) {
88
+			return ($param->isPassedByReference() ? '&$' : '$').$param->name;
89
+		}, $reflection->getParameters());
90
+		$this->result[] = 'Closure ('.implode(', ', $params).') { ... }'."\n";
91
+	}
92 92
 
93
-    /**
94
-     * @param object $subject
95
-     */
96
-    protected function inspectObject($subject): void
97
-    {
98
-        $classname = get_class($subject);
99
-        if ($this->level > $this->depth) {
100
-            $this->result[] = 'Nested '.$classname." Object\n";
101
-            return;
102
-        }
103
-        if ($subject instanceof \ArrayObject) {
104
-            $this->result[] = $classname." ArrayObject (\n";
105
-        } else {
106
-            $this->result[] = $classname." Object (\n";
107
-            $subject = (array) $subject;
108
-        }
109
-        foreach ($subject as $key => $val) {
110
-            if (false === $this->isIgnoredKey($key)) {
111
-                $this->result[] = $this->formatKey($key);
112
-                $this->inspect($val);
113
-            }
114
-        }
115
-        $this->result[] = str_repeat(' ', ($this->level - 1) * 4).")\n";
116
-    }
93
+	/**
94
+	 * @param object $subject
95
+	 */
96
+	protected function inspectObject($subject): void
97
+	{
98
+		$classname = get_class($subject);
99
+		if ($this->level > $this->depth) {
100
+			$this->result[] = 'Nested '.$classname." Object\n";
101
+			return;
102
+		}
103
+		if ($subject instanceof \ArrayObject) {
104
+			$this->result[] = $classname." ArrayObject (\n";
105
+		} else {
106
+			$this->result[] = $classname." Object (\n";
107
+			$subject = (array) $subject;
108
+		}
109
+		foreach ($subject as $key => $val) {
110
+			if (false === $this->isIgnoredKey($key)) {
111
+				$this->result[] = $this->formatKey($key);
112
+				$this->inspect($val);
113
+			}
114
+		}
115
+		$this->result[] = str_repeat(' ', ($this->level - 1) * 4).")\n";
116
+	}
117 117
 
118
-    /**
119
-     * @param mixed $subject
120
-     */
121
-    protected function inspectPrimitive($subject): void
122
-    {
123
-        if (true === $subject) {
124
-            $subject = '(bool) true';
125
-        } elseif (false === $subject) {
126
-            $subject = '(bool) false';
127
-        } elseif (null === $subject) {
128
-            $subject = '(null)';
129
-        }
130
-        $this->result[] = $subject."\n";
131
-    }
118
+	/**
119
+	 * @param mixed $subject
120
+	 */
121
+	protected function inspectPrimitive($subject): void
122
+	{
123
+		if (true === $subject) {
124
+			$subject = '(bool) true';
125
+		} elseif (false === $subject) {
126
+			$subject = '(bool) false';
127
+		} elseif (null === $subject) {
128
+			$subject = '(null)';
129
+		}
130
+		$this->result[] = $subject."\n";
131
+	}
132 132
 
133
-    /**
134
-     * @param string $key
135
-     */
136
-    protected function isIgnoredKey($key): bool
137
-    {
138
-        return in_array($key, $this->ignore);
139
-    }
133
+	/**
134
+	 * @param string $key
135
+	 */
136
+	protected function isIgnoredKey($key): bool
137
+	{
138
+		return in_array($key, $this->ignore);
139
+	}
140 140
 
141
-    protected function reset(): void
142
-    {
143
-        $this->level = 0;
144
-        $this->result = [];
145
-        $this->stack = [];
146
-    }
141
+	protected function reset(): void
142
+	{
143
+		$this->level = 0;
144
+		$this->result = [];
145
+		$this->stack = [];
146
+	}
147 147
 }
148 148
 
Please login to merge, or discard this patch.
plugin/Modules/Templates.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -6,39 +6,39 @@
 block discarded – undo
6 6
 
7 7
 class Templates extends Module
8 8
 {
9
-    public function entries(): array
10
-    {
11
-        if (!empty($this->entries)) {
12
-            return $this->entries;
13
-        }
14
-        if (class_exists('\GeminiLabs\Castor\Facades\Development')
15
-            && class_exists('\GeminiLabs\Castor\Helpers\Development')
16
-            && method_exists('\GeminiLabs\Castor\Helpers\Development', 'templatePaths')) { // @phpstan-ignore-line
17
-            $this->entries = \GeminiLabs\Castor\Facades\Development::templatePaths();
18
-        } else {
19
-            $files = array_values(array_filter(get_included_files(), function ($file) {
20
-                $bool = false !== strpos($file, '/themes/') && false === strpos($file, '/functions.php');
21
-                return (bool) apply_filters('blackbar/templates/file', $bool, $file);
22
-            }));
23
-            $this->entries = array_map(function ($file) {
24
-                return str_replace(trailingslashit(WP_CONTENT_DIR), '', $file);
25
-            }, $files);
26
-        }
27
-        return $this->entries;
28
-    }
9
+	public function entries(): array
10
+	{
11
+		if (!empty($this->entries)) {
12
+			return $this->entries;
13
+		}
14
+		if (class_exists('\GeminiLabs\Castor\Facades\Development')
15
+			&& class_exists('\GeminiLabs\Castor\Helpers\Development')
16
+			&& method_exists('\GeminiLabs\Castor\Helpers\Development', 'templatePaths')) { // @phpstan-ignore-line
17
+			$this->entries = \GeminiLabs\Castor\Facades\Development::templatePaths();
18
+		} else {
19
+			$files = array_values(array_filter(get_included_files(), function ($file) {
20
+				$bool = false !== strpos($file, '/themes/') && false === strpos($file, '/functions.php');
21
+				return (bool) apply_filters('blackbar/templates/file', $bool, $file);
22
+			}));
23
+			$this->entries = array_map(function ($file) {
24
+				return str_replace(trailingslashit(WP_CONTENT_DIR), '', $file);
25
+			}, $files);
26
+		}
27
+		return $this->entries;
28
+	}
29 29
 
30
-    public function hasEntries(): bool
31
-    {
32
-        return !empty($this->entries());
33
-    }
30
+	public function hasEntries(): bool
31
+	{
32
+		return !empty($this->entries());
33
+	}
34 34
 
35
-    public function isVisible(): bool
36
-    {
37
-        return !is_admin() && $this->hasEntries();
38
-    }
35
+	public function isVisible(): bool
36
+	{
37
+		return !is_admin() && $this->hasEntries();
38
+	}
39 39
 
40
-    public function label(): string
41
-    {
42
-        return __('Templates', 'blackbar');
43
-    }
40
+	public function label(): string
41
+	{
42
+		return __('Templates', 'blackbar');
43
+	}
44 44
 }
Please login to merge, or discard this patch.
plugin/Application.php 1 patch
Indentation   +81 added lines, -81 removed lines patch added patch discarded remove patch
@@ -11,94 +11,94 @@
 block discarded – undo
11 11
 
12 12
 final class Application
13 13
 {
14
-    public const CONSOLE_HOOK = 'console';
15
-    public const ID = 'blackbar';
16
-    public const PROFILER_START_HOOK = 'timer:start';
17
-    public const PROFILER_STOP_HOOK = 'timer:stop';
14
+	public const CONSOLE_HOOK = 'console';
15
+	public const ID = 'blackbar';
16
+	public const PROFILER_START_HOOK = 'timer:start';
17
+	public const PROFILER_STOP_HOOK = 'timer:stop';
18 18
 
19
-    public $console;
20
-    public $file;
21
-    public $globals;
22
-    public $hooks;
23
-    public $profiler;
24
-    public $queries;
25
-    public $templates;
19
+	public $console;
20
+	public $file;
21
+	public $globals;
22
+	public $hooks;
23
+	public $profiler;
24
+	public $queries;
25
+	public $templates;
26 26
 
27
-    private static $instance;
27
+	private static $instance;
28 28
 
29
-    public function __construct()
30
-    {
31
-        $file = wp_normalize_path((new \ReflectionClass($this))->getFileName());
32
-        $this->console = new Console($this);
33
-        $this->file = str_replace('plugin/Application', static::ID, $file);
34
-        $this->globals = new Globals($this);
35
-        $this->hooks = new Hooks($this);
36
-        $this->profiler = new Profiler($this);
37
-        $this->queries = new Queries($this);
38
-        $this->templates = new Templates($this);
39
-    }
29
+	public function __construct()
30
+	{
31
+		$file = wp_normalize_path((new \ReflectionClass($this))->getFileName());
32
+		$this->console = new Console($this);
33
+		$this->file = str_replace('plugin/Application', static::ID, $file);
34
+		$this->globals = new Globals($this);
35
+		$this->hooks = new Hooks($this);
36
+		$this->profiler = new Profiler($this);
37
+		$this->queries = new Queries($this);
38
+		$this->templates = new Templates($this);
39
+	}
40 40
 
41
-    public function errorHandler(int $errno, string $message, string $file, int $line): bool
42
-    {
43
-        $path = explode(ABSPATH, $file);
44
-        $location = sprintf('%s:%s', array_pop($path), $line);
45
-        $this->console->store($message, (string) $errno, $location);
46
-        return true;
47
-    }
41
+	public function errorHandler(int $errno, string $message, string $file, int $line): bool
42
+	{
43
+		$path = explode(ABSPATH, $file);
44
+		$location = sprintf('%s:%s', array_pop($path), $line);
45
+		$this->console->store($message, (string) $errno, $location);
46
+		return true;
47
+	}
48 48
 
49
-    public function init(): void
50
-    {
51
-        $controller = new Controller($this);
52
-        add_action('all', [$controller, 'initConsole']);
53
-        add_action('all', [$controller, 'initHooks']);
54
-        add_action('all', [$controller, 'initProfiler']);
55
-        do_action('blackbar/profiler/start'); // start profiler
56
-        do_action('blackbar/profiler/noise'); // measure profiler noise
57
-        add_action('plugins_loaded', [$controller, 'registerLanguages']);
58
-        add_action('init', function () use ($controller) {
59
-            if (!apply_filters('blackbar/enabled', current_user_can('administrator'))) {
60
-                return;
61
-            }
62
-            add_action('admin_enqueue_scripts', [$controller, 'enqueueAssets']);
63
-            add_action('wp_enqueue_scripts', [$controller, 'enqueueAssets']);
64
-            add_action('admin_footer', [$controller, 'renderBar'], 99999);
65
-            add_action('wp_footer', [$controller, 'renderBar'], 99999);
66
-            add_filter('admin_body_class', [$controller, 'filterBodyClasses']);
67
-        });
68
-        set_error_handler([$this, 'errorHandler'], E_ALL | E_STRICT);
69
-    }
49
+	public function init(): void
50
+	{
51
+		$controller = new Controller($this);
52
+		add_action('all', [$controller, 'initConsole']);
53
+		add_action('all', [$controller, 'initHooks']);
54
+		add_action('all', [$controller, 'initProfiler']);
55
+		do_action('blackbar/profiler/start'); // start profiler
56
+		do_action('blackbar/profiler/noise'); // measure profiler noise
57
+		add_action('plugins_loaded', [$controller, 'registerLanguages']);
58
+		add_action('init', function () use ($controller) {
59
+			if (!apply_filters('blackbar/enabled', current_user_can('administrator'))) {
60
+				return;
61
+			}
62
+			add_action('admin_enqueue_scripts', [$controller, 'enqueueAssets']);
63
+			add_action('wp_enqueue_scripts', [$controller, 'enqueueAssets']);
64
+			add_action('admin_footer', [$controller, 'renderBar'], 99999);
65
+			add_action('wp_footer', [$controller, 'renderBar'], 99999);
66
+			add_filter('admin_body_class', [$controller, 'filterBodyClasses']);
67
+		});
68
+		set_error_handler([$this, 'errorHandler'], E_ALL | E_STRICT);
69
+	}
70 70
 
71
-    /**
72
-     * @return static
73
-     */
74
-    public static function load()
75
-    {
76
-        if (empty(self::$instance)) {
77
-            self::$instance = new static();
78
-        }
79
-        return self::$instance;
80
-    }
71
+	/**
72
+	 * @return static
73
+	 */
74
+	public static function load()
75
+	{
76
+		if (empty(self::$instance)) {
77
+			self::$instance = new static();
78
+		}
79
+		return self::$instance;
80
+	}
81 81
 
82
-    public function path(string $file = '', bool $realpath = true): string
83
-    {
84
-        $path = $realpath
85
-            ? plugin_dir_path($this->file)
86
-            : trailingslashit(WP_PLUGIN_DIR).basename(dirname($this->file));
87
-        return trailingslashit($path).ltrim(trim($file), '/');
88
-    }
82
+	public function path(string $file = '', bool $realpath = true): string
83
+	{
84
+		$path = $realpath
85
+			? plugin_dir_path($this->file)
86
+			: trailingslashit(WP_PLUGIN_DIR).basename(dirname($this->file));
87
+		return trailingslashit($path).ltrim(trim($file), '/');
88
+	}
89 89
 
90
-    public function render(string $view, array $data = []): void
91
-    {
92
-        $file = $this->path(sprintf('views/%s.php', str_replace('.php', '', $view)));
93
-        if (!file_exists($file)) {
94
-            return;
95
-        }
96
-        extract($data);
97
-        include $file;
98
-    }
90
+	public function render(string $view, array $data = []): void
91
+	{
92
+		$file = $this->path(sprintf('views/%s.php', str_replace('.php', '', $view)));
93
+		if (!file_exists($file)) {
94
+			return;
95
+		}
96
+		extract($data);
97
+		include $file;
98
+	}
99 99
 
100
-    public function url(string $path = ''): string
101
-    {
102
-        return esc_url(plugin_dir_url($this->file).ltrim(trim($path), '/'));
103
-    }
100
+	public function url(string $path = ''): string
101
+	{
102
+		return esc_url(plugin_dir_url($this->file).ltrim(trim($path), '/'));
103
+	}
104 104
 }
Please login to merge, or discard this patch.
plugin/Modules/Module.php 1 patch
Indentation   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -6,80 +6,80 @@
 block discarded – undo
6 6
 
7 7
 abstract class Module
8 8
 {
9
-    /**
10
-     * @var Application
11
-     */
12
-    protected $app;
13
-    /**
14
-     * @var array
15
-     */
16
-    protected $entries;
9
+	/**
10
+	 * @var Application
11
+	 */
12
+	protected $app;
13
+	/**
14
+	 * @var array
15
+	 */
16
+	protected $entries;
17 17
 
18
-    public function __construct(Application $app)
19
-    {
20
-        $this->app = $app;
21
-        $this->entries = [];
22
-    }
18
+	public function __construct(Application $app)
19
+	{
20
+		$this->app = $app;
21
+		$this->entries = [];
22
+	}
23 23
 
24
-    public function classes(): string
25
-    {
26
-        return $this->id();
27
-    }
24
+	public function classes(): string
25
+	{
26
+		return $this->id();
27
+	}
28 28
 
29
-    abstract public function entries(): array;
29
+	abstract public function entries(): array;
30 30
 
31
-    public function hasEntries(): bool
32
-    {
33
-        return !empty($this->entries);
34
-    }
31
+	public function hasEntries(): bool
32
+	{
33
+		return !empty($this->entries);
34
+	}
35 35
 
36
-    public function id(): string
37
-    {
38
-        return sprintf('glbb-%s', $this->slug());
39
-    }
36
+	public function id(): string
37
+	{
38
+		return sprintf('glbb-%s', $this->slug());
39
+	}
40 40
 
41
-    public function info(): string
42
-    {
43
-        return '';
44
-    }
41
+	public function info(): string
42
+	{
43
+		return '';
44
+	}
45 45
 
46
-    public function isVisible(): bool
47
-    {
48
-        return true;
49
-    }
46
+	public function isVisible(): bool
47
+	{
48
+		return true;
49
+	}
50 50
 
51
-    abstract public function label(): string;
51
+	abstract public function label(): string;
52 52
 
53
-    public function render(): void
54
-    {
55
-        $this->app->render('panels/'.$this->slug(), ['module' => $this]);
56
-    }
53
+	public function render(): void
54
+	{
55
+		$this->app->render('panels/'.$this->slug(), ['module' => $this]);
56
+	}
57 57
 
58
-    public function slug(): string
59
-    {
60
-        return strtolower((new \ReflectionClass($this))->getShortName());
61
-    }
58
+	public function slug(): string
59
+	{
60
+		return strtolower((new \ReflectionClass($this))->getShortName());
61
+	}
62 62
 
63
-    protected function formatTime(int $nanoseconds): string
64
-    {
65
-        if ($nanoseconds >= 1e9) {
66
-            return sprintf('%s s', $this->toDecimal(round($nanoseconds / 1e9, 2)));
67
-        }
68
-        if ($nanoseconds >= 1e6) {
69
-            return sprintf('%s ms', $this->toDecimal(round($nanoseconds / 1e6, 2)));
70
-        }
71
-        if ($nanoseconds >= 1e3) {
72
-            return sprintf('%s µs', round($nanoseconds / 1e3));
73
-        }
74
-        return sprintf('%s ns', $nanoseconds);
75
-    }
63
+	protected function formatTime(int $nanoseconds): string
64
+	{
65
+		if ($nanoseconds >= 1e9) {
66
+			return sprintf('%s s', $this->toDecimal(round($nanoseconds / 1e9, 2)));
67
+		}
68
+		if ($nanoseconds >= 1e6) {
69
+			return sprintf('%s ms', $this->toDecimal(round($nanoseconds / 1e6, 2)));
70
+		}
71
+		if ($nanoseconds >= 1e3) {
72
+			return sprintf('%s µs', round($nanoseconds / 1e3));
73
+		}
74
+		return sprintf('%s ns', $nanoseconds);
75
+	}
76 76
 
77
-    protected function toDecimal(float $number): string
78
-    {
79
-        $number = (string) $number;
80
-        if (false !== strpos($number, '.')) {
81
-            $number = rtrim(rtrim($number, '0'), '.');
82
-        }
83
-        return $number;
84
-    }
77
+	protected function toDecimal(float $number): string
78
+	{
79
+		$number = (string) $number;
80
+		if (false !== strpos($number, '.')) {
81
+			$number = rtrim(rtrim($number, '0'), '.');
82
+		}
83
+		return $number;
84
+	}
85 85
 }
Please login to merge, or discard this patch.
plugin/Modules/Globals.php 1 patch
Indentation   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -4,49 +4,49 @@
 block discarded – undo
4 4
 
5 5
 class Globals extends Module
6 6
 {
7
-    public function entries(): array
8
-    {
9
-        if (!empty($this->entries)) {
10
-            return $this->entries;
11
-        }
12
-        $globals = apply_filters('blackbar/globals', [
13
-            'INPUT_COOKIE' => $_COOKIE,
14
-            'INPUT_ENV' => $_ENV,
15
-            'INPUT_GET' => $_GET,
16
-            'INPUT_POST' => $_POST,
17
-            'INPUT_SERVER' => $_SERVER,
18
-            'WP_Screen' => $this->wpscreen(),
19
-        ]);
20
-        $globals = array_filter($globals);
21
-        foreach ($globals as $key => $values) {
22
-            $this->entries[] = [
23
-                'name' => $key,
24
-                'value' => var_export($values, true),
25
-            ];
26
-        }
27
-        return $this->entries;
28
-    }
7
+	public function entries(): array
8
+	{
9
+		if (!empty($this->entries)) {
10
+			return $this->entries;
11
+		}
12
+		$globals = apply_filters('blackbar/globals', [
13
+			'INPUT_COOKIE' => $_COOKIE,
14
+			'INPUT_ENV' => $_ENV,
15
+			'INPUT_GET' => $_GET,
16
+			'INPUT_POST' => $_POST,
17
+			'INPUT_SERVER' => $_SERVER,
18
+			'WP_Screen' => $this->wpscreen(),
19
+		]);
20
+		$globals = array_filter($globals);
21
+		foreach ($globals as $key => $values) {
22
+			$this->entries[] = [
23
+				'name' => $key,
24
+				'value' => var_export($values, true),
25
+			];
26
+		}
27
+		return $this->entries;
28
+	}
29 29
 
30
-    public function hasEntries(): bool
31
-    {
32
-        return !empty($this->entries());
33
-    }
30
+	public function hasEntries(): bool
31
+	{
32
+		return !empty($this->entries());
33
+	}
34 34
 
35
-    public function label(): string
36
-    {
37
-        return __('Globals', 'blackbar');
38
-    }
35
+	public function label(): string
36
+	{
37
+		return __('Globals', 'blackbar');
38
+	}
39 39
 
40
-    protected function wpscreen(): array
41
-    {
42
-        $values = [];
43
-        if (is_admin() && $screen = get_current_screen()) {
44
-            $reflection = new \ReflectionClass($screen);
45
-            $properties = $reflection->getProperties(\ReflectionProperty::IS_PUBLIC);
46
-            foreach ($properties as $property) {
47
-                $values[$property->getName()] = $property->getValue($screen);
48
-            }
49
-        }
50
-        return $values;
51
-    }
40
+	protected function wpscreen(): array
41
+	{
42
+		$values = [];
43
+		if (is_admin() && $screen = get_current_screen()) {
44
+			$reflection = new \ReflectionClass($screen);
45
+			$properties = $reflection->getProperties(\ReflectionProperty::IS_PUBLIC);
46
+			foreach ($properties as $property) {
47
+				$values[$property->getName()] = $property->getValue($screen);
48
+			}
49
+		}
50
+		return $values;
51
+	}
52 52
 }
Please login to merge, or discard this patch.
plugin/Modules/Hooks.php 1 patch
Indentation   +137 added lines, -137 removed lines patch added patch discarded remove patch
@@ -4,150 +4,150 @@
 block discarded – undo
4 4
 
5 5
 class Hooks extends Module
6 6
 {
7
-    /**
8
-     * @var array
9
-     */
10
-    protected $hooks = [];
11
-    /**
12
-     * @var int
13
-     */
14
-    protected $totalHooks = 0;
15
-    /**
16
-     * Total elapsed time in nanoseconds.
17
-     * @var int
18
-     */
19
-    protected $totalTime = 0;
7
+	/**
8
+	 * @var array
9
+	 */
10
+	protected $hooks = [];
11
+	/**
12
+	 * @var int
13
+	 */
14
+	protected $totalHooks = 0;
15
+	/**
16
+	 * Total elapsed time in nanoseconds.
17
+	 * @var int
18
+	 */
19
+	protected $totalTime = 0;
20 20
 
21
-    public function entries(): array
22
-    {
23
-        if (!$this->hasEntries()) {
24
-            return [];
25
-        }
26
-        if (!empty($this->hooks)) {
27
-            return $this->hooks;
28
-        }
29
-        array_walk($this->entries, function (&$data) {
30
-            $total = $this->totalTimeForHook($data);
31
-            $perCall = (int) round($total / $data['count']);
32
-            $data['per_call'] = $this->formatTime($perCall);
33
-            $data['total'] = $total;
34
-            $data['total_formatted'] = $this->formatTime($total);
35
-        });
36
-        $entries = $this->entries;
37
-        $executionOrder = array_keys($entries);
38
-        uasort($entries, [$this, 'sortByTime']);
39
-        $this->hooks = array_slice($entries, 0, 50); // Keep the 50 slowest hooks
40
-        $this->totalHooks = array_sum(wp_list_pluck($this->entries, 'count'));
41
-        $this->totalTime = array_sum(wp_list_pluck($this->entries, 'total'));
42
-        $order = array_intersect($executionOrder, array_keys($this->hooks));
43
-        foreach ($order as $index => $hook) {
44
-            $this->hooks[$hook]['index'] = $index;
45
-        }
46
-        return $this->hooks;
47
-    }
21
+	public function entries(): array
22
+	{
23
+		if (!$this->hasEntries()) {
24
+			return [];
25
+		}
26
+		if (!empty($this->hooks)) {
27
+			return $this->hooks;
28
+		}
29
+		array_walk($this->entries, function (&$data) {
30
+			$total = $this->totalTimeForHook($data);
31
+			$perCall = (int) round($total / $data['count']);
32
+			$data['per_call'] = $this->formatTime($perCall);
33
+			$data['total'] = $total;
34
+			$data['total_formatted'] = $this->formatTime($total);
35
+		});
36
+		$entries = $this->entries;
37
+		$executionOrder = array_keys($entries);
38
+		uasort($entries, [$this, 'sortByTime']);
39
+		$this->hooks = array_slice($entries, 0, 50); // Keep the 50 slowest hooks
40
+		$this->totalHooks = array_sum(wp_list_pluck($this->entries, 'count'));
41
+		$this->totalTime = array_sum(wp_list_pluck($this->entries, 'total'));
42
+		$order = array_intersect($executionOrder, array_keys($this->hooks));
43
+		foreach ($order as $index => $hook) {
44
+			$this->hooks[$hook]['index'] = $index;
45
+		}
46
+		return $this->hooks;
47
+	}
48 48
 
49
-    public function info(): string
50
-    {
51
-        $this->entries(); // calculate the totalTime
52
-        return $this->formatTime($this->totalTime);
53
-    }
49
+	public function info(): string
50
+	{
51
+		$this->entries(); // calculate the totalTime
52
+		return $this->formatTime($this->totalTime);
53
+	}
54 54
 
55
-    public function label(): string
56
-    {
57
-        return __('Hooks', 'blackbar');
58
-    }
55
+	public function label(): string
56
+	{
57
+		return __('Hooks', 'blackbar');
58
+	}
59 59
 
60
-    public function startTimer(): void
61
-    {
62
-        if (class_exists('Debug_Bar_Slow_Actions')) {
63
-            return;
64
-        }
65
-        $hook = current_filter();
66
-        if (!isset($this->entries[$hook])) {
67
-            $callbacks = $this->callbacksForHook($hook);
68
-            if (empty($callbacks)) {
69
-                return; // We skipped Blackbar callbacks
70
-            }
71
-            $this->entries[$hook] = [
72
-                'callbacks' => $callbacks,
73
-                'callbacks_count' => count(array_merge(...$callbacks)),
74
-                'count' => 0,
75
-                'stack' => [],
76
-                'time' => [],
77
-            ];
78
-            add_action($hook, [$this, 'stopTimer'], 9999); // @phpstan-ignore-line
79
-        }
80
-        ++$this->entries[$hook]['count'];
81
-        array_push($this->entries[$hook]['stack'], ['start' => (int) hrtime(true)]);
82
-    }
60
+	public function startTimer(): void
61
+	{
62
+		if (class_exists('Debug_Bar_Slow_Actions')) {
63
+			return;
64
+		}
65
+		$hook = current_filter();
66
+		if (!isset($this->entries[$hook])) {
67
+			$callbacks = $this->callbacksForHook($hook);
68
+			if (empty($callbacks)) {
69
+				return; // We skipped Blackbar callbacks
70
+			}
71
+			$this->entries[$hook] = [
72
+				'callbacks' => $callbacks,
73
+				'callbacks_count' => count(array_merge(...$callbacks)),
74
+				'count' => 0,
75
+				'stack' => [],
76
+				'time' => [],
77
+			];
78
+			add_action($hook, [$this, 'stopTimer'], 9999); // @phpstan-ignore-line
79
+		}
80
+		++$this->entries[$hook]['count'];
81
+		array_push($this->entries[$hook]['stack'], ['start' => (int) hrtime(true)]);
82
+	}
83 83
 
84
-    /**
85
-     * @param mixed $filteredValue
86
-     * @return mixed
87
-     */
88
-    public function stopTimer($filteredValue = null)
89
-    {
90
-        $time = array_pop($this->entries[current_filter()]['stack']);
91
-        $time['stop'] = (int) hrtime(true);
92
-        array_push($this->entries[current_filter()]['time'], $time);
93
-        return $filteredValue; // In case this was a filter.
94
-    }
84
+	/**
85
+	 * @param mixed $filteredValue
86
+	 * @return mixed
87
+	 */
88
+	public function stopTimer($filteredValue = null)
89
+	{
90
+		$time = array_pop($this->entries[current_filter()]['stack']);
91
+		$time['stop'] = (int) hrtime(true);
92
+		array_push($this->entries[current_filter()]['time'], $time);
93
+		return $filteredValue; // In case this was a filter.
94
+	}
95 95
 
96
-    /**
97
-     * @param mixed $function
98
-     */
99
-    protected function callbackFunction($function): string
100
-    {
101
-        if (is_array($function)) {
102
-            list($object, $method) = $function;
103
-            if (is_object($object)) {
104
-                $object = get_class($object);
105
-            }
106
-            if (str_starts_with($object, 'GeminiLabs\BlackBar')) {
107
-                return ''; // skip Blackbar callbacks
108
-            }
109
-            return rtrim(sprintf('%s::%s', $object, $method), ':');
110
-        }
111
-        if (is_object($function)) {
112
-            return get_class($function);
113
-        }
114
-        return (string) $function;
115
-    }
96
+	/**
97
+	 * @param mixed $function
98
+	 */
99
+	protected function callbackFunction($function): string
100
+	{
101
+		if (is_array($function)) {
102
+			list($object, $method) = $function;
103
+			if (is_object($object)) {
104
+				$object = get_class($object);
105
+			}
106
+			if (str_starts_with($object, 'GeminiLabs\BlackBar')) {
107
+				return ''; // skip Blackbar callbacks
108
+			}
109
+			return rtrim(sprintf('%s::%s', $object, $method), ':');
110
+		}
111
+		if (is_object($function)) {
112
+			return get_class($function);
113
+		}
114
+		return (string) $function;
115
+	}
116 116
 
117
-    protected function callbacksForHook(string $hook): array
118
-    {
119
-        global $wp_filter;
120
-        $data = $wp_filter[$hook] ?? [];
121
-        $results = [];
122
-        foreach ($data as $priority => $callbacks) {
123
-            $results[$priority] = $results[$priority] ?? [];
124
-            foreach ($callbacks as $callback) {
125
-                $function = $this->callbackFunction($callback['function']);
126
-                if (!empty($function)) {
127
-                    $results[$priority][] = $function;
128
-                }
129
-            }
130
-        }
131
-        return $results;
132
-    }
117
+	protected function callbacksForHook(string $hook): array
118
+	{
119
+		global $wp_filter;
120
+		$data = $wp_filter[$hook] ?? [];
121
+		$results = [];
122
+		foreach ($data as $priority => $callbacks) {
123
+			$results[$priority] = $results[$priority] ?? [];
124
+			foreach ($callbacks as $callback) {
125
+				$function = $this->callbackFunction($callback['function']);
126
+				if (!empty($function)) {
127
+					$results[$priority][] = $function;
128
+				}
129
+			}
130
+		}
131
+		return $results;
132
+	}
133 133
 
134
-    protected function sortByTime(array $a, array $b): int
135
-    {
136
-        if ($a['total'] !== $b['total']) {
137
-            return ($a['total'] > $b['total']) ? -1 : 1;
138
-        }
139
-        return 0;
140
-    }
134
+	protected function sortByTime(array $a, array $b): int
135
+	{
136
+		if ($a['total'] !== $b['total']) {
137
+			return ($a['total'] > $b['total']) ? -1 : 1;
138
+		}
139
+		return 0;
140
+	}
141 141
 
142
-    /**
143
-     * Total elapsed time in nanoseconds.
144
-     */
145
-    protected function totalTimeForHook(array $data): int
146
-    {
147
-        $total = 0;
148
-        foreach ($data['time'] as $time) {
149
-            $total += ($time['stop'] - $time['start']);
150
-        }
151
-        return $total;
152
-    }
142
+	/**
143
+	 * Total elapsed time in nanoseconds.
144
+	 */
145
+	protected function totalTimeForHook(array $data): int
146
+	{
147
+		$total = 0;
148
+		foreach ($data['time'] as $time) {
149
+			$total += ($time['stop'] - $time['start']);
150
+		}
151
+		return $total;
152
+	}
153 153
 }
Please login to merge, or discard this patch.