Skip to content

Commit

Permalink
Ensure PHP 7.2 not 7.4 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
bordoni committed Dec 14, 2023
1 parent 23cce1e commit 0c9e2d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/class-phpcs-runner.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PHPCS_Runner {
*
* @var array
*/
protected array $allowed_args = [
protected $allowed_args = [
'standard' => true,
'extensions' => true,
'sniffs' => true,
Expand All @@ -33,7 +33,7 @@ class PHPCS_Runner {
*
* @var string
*/
protected string $path;
protected $path;

/**
* Which standard file we will use.
Expand All @@ -42,7 +42,7 @@ class PHPCS_Runner {
*
* @var string
*/
protected string $standard;
protected $standard;

/**
* Sets the plugin path which will be used for the runner.
Expand Down

0 comments on commit 0c9e2d1

Please sign in to comment.