Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

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.

Code Duplication    Length = 7-7 lines in 2 locations

tests/class-php-typography-testcase.php 2 locations

@@ 61-67 (lines=7) @@
58
	 *
59
	 * @return mixed Method return.
60
	 */
61
	protected function invokeMethod( $object, $method_name, array $parameters = [] ) {
62
		$reflection = new \ReflectionClass( get_class( $object ) );
63
		$method = $reflection->getMethod( $method_name );
64
		$method->setAccessible( true );
65
66
		return $method->invokeArgs( $object, $parameters );
67
	}
68
69
	/**
70
	 * Call protected/private method of a class.
@@ 78-84 (lines=7) @@
75
	 *
76
	 * @return mixed Method return.
77
	 */
78
	protected function invokeStaticMethod( $classname, $method_name, array $parameters = [] ) {
79
		$reflection = new \ReflectionClass( $classname );
80
		$method = $reflection->getMethod( $method_name );
81
		$method->setAccessible( true );
82
83
		return $method->invokeArgs( null, $parameters );
84
	}
85
86
	/**
87
	 * Sets the value of a private/protected property of a class.