Completed
Push — add/stats-package ( 873a22...c3aabb )
by
unknown
230:03 queued 222:25
created

packages/error/src/class-error.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Jetpack Error - a wrapper around WP_Error.
4
 *
5
 * @see https://codex.wordpress.org/Class_Reference/WP_Error
6
 *
7
 * @package automattic/jetpack-error
8
 */
9
10
namespace Automattic\Jetpack;
11
12
/**
13
 * Class Automattic\Jetpack\Error
14
 */
15
class Error extends \WP_Error {}
0 ignored issues
show
Comprehensibility Best Practice introduced by
The type Automattic\Jetpack\Error has been defined more than once; this definition is ignored, only the first definition in packages/abtest/tests/php/class-test-abtest.php (L162-162) is considered.

This check looks for classes that have been defined more than once.

If you can, we would recommend to use standard object-oriented programming techniques. For example, to avoid multiple types, it might make sense to create a common interface, and then multiple, different implementations for that interface.

This also has the side-effect of providing you with better IDE auto-completion, static analysis and also better OPCode caching from PHP.

Loading history...
16