1. Go to this page and download the library: Download gskema/phpcs-type-sniff library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gskema / phpcs-type-sniff example snippets
namespace Fruits;
/**
* Class Banana // useless description
* @package Fruits // useless tag
*/
class Banana
{
public const C1 = []; // missing typed array doc type
/** @var array */ // must use typed array doc type
public const C2 = [];
/** @var array[] */ // must use specific typed array doc type
public const C3 = [[]];
/** @var bool|false */ // redundant false type
public const C4 = false;
/**
* @var int // incompatible int type, missing null type
*/
public const C5 = null;
/** @var int */
public const C6 = 1; // useless PHPDoc
#[ArrayShape(['foo' => 'int'])]
public const C7 = ['foo' => 1]; // ArrayShape supported
public $prop1 = []; // missing typed array doc type + array type decl.
/** @var array */ // must use typed array doc type + array type decl.
public $prop2 = [];
public $prop3; // missing type declaration
/** @var */ // missing doc type, missing type declaration
public $prop4;
/** @var array[][] */ // must use specific typed array doc type
public $prop5; // + missing type declaration
/** @var array|string[] */ // redundant array type, missing type declaration
public $prop6;
/** @var int|string */ // missing null doc type, missing type declaration
public $prop7 = null;
/** @var int $prop8 */ // prop name must be removed, missing type decl.
public $prop8;
public int $prop9;
public ?int $prop10;
/** @var int|null */ // Useless PHPDoc
public ?int $prop11;
/** @var string|int */ // missing null type, wrong string type
public ?int $prop12;
/** @var string[] */
public array $prop13;
#[ArrayShape(['foo' => 'int'])]
public $prop14 = ['foo' => 1]; // ArrayShape supported
/** @var class-string */
public string $prop15;
/** @var iterable<int, Acme> */
public iterable $prop16;
public function __construct(
$param1, // missing param type decl. in method PHPDoc
public $param2, // missing param type decl. (in method PHPDoc or inline PHPDoc)
public array $param3, // missing typed array doc type (in method PHPDoc or inline PHPDoc)
public int $param4,
public int|null // must use shorthand nullable syntax: ?int
public readonly $obj = new stdClass(),
public Iterator&Countable $obj2,
) {}
/**
* @return $this // missing type decl. e.g. 'static'
*/
public function setThing()
{
return $this;
}
/**
* @param array|string // must used typed array + wrong type: string + missing: int
* @param mixed $id
* @return $this // useless PHPDoc (does not provide additional code intel over 'static')
*/
public function setSomething(
array|int
$id = null // missing type decl. "mixed"
): self {
return $this;
}
public function func1(
$param1, // missing param type decl.
int $param2
) { // missing return type decl.
}
/**
* @param int|null $param1
* @param int|null $param2
* @param array $param3 // must use typed array doc type
*
* @param $param5 // suggested int doc type
* @param $param6 // missing doc type
* @param array[] $param7 // must use specific typed array doc type
* @param bool|true $param8 // remove true doc type
* @param null $param9 // suggested compound doc type, e.g. int|null
* @param string $param10 // incompatible string type, missing int, null types
* @param stdClass $param11
* @param bool|int $param12
*
* @return void // useless tag
*/
public function func2(
$param1, // suggested ?int type decl.
int $param2 = null, // suggested ?int type decl.
array $param3,
$param4, // missing @param tag
int $param5,
$param6,
array $param7,
bool $param8,
$param9 = null, // missing type decl.
?int $param10 = null,
stdClass $param11,
$param12
): void {
}
/**
* @return int
*/
public function func3(): int // useless PHPDoc
{
}
/**
* @param array<int, bool> $arg1 // alternative array documentation
* @param array{foo: bool, bar: int} $arg2 // supported, no warning
* @param (int|string)[] $arg3 //
* @param array('key1' => int, ...) $arg4 //
*/
public function func4(
array $arg1,
array $arg2,
array $arg3,
array $arg4
): void {
}
/**
* Description
*/
#[ArrayShape(['foo' => 'int'])] // ArrayShape supported
public function func5(
#[ArrayShape(['foo' => 'int'])] // ArrayShape supported
array $arg1
): array {
return ['foo' => 1];
}
/**
* @return Generator<int, string> // supported
*/
public function func6(): Generator;
}
xml
<ruleset name="your_ruleset">
<!-- your base configuration -->
<rule ref="PSR12"/>
<!-- phpcs-type-sniff configuration -->
<autoload>./vendor/autoload.php</autoload>
<rule ref="./vendor/gskema/phpcs-type-sniff/src/Sniffs/CompositeCodeElementSniff.php">
<properties>
<property name="useReflection" value="true"/>
</properties>
</rule>
</ruleset>
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.