lipemat / phpstan-wordpress
Phpstan extension for working with WordPress
Fund package maintenance!
lipemat
Installs: 15 255
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 3
Forks: 0
Open Issues: 0
Type:phpstan-extension
Requires
- php: >=7.4
- php-stubs/wp-cli-stubs: ^2.6.0
- phpstan/extension-installer: ^1.1.0
- phpstan/phpstan: ^1.10.38
- szepeviktor/phpstan-wordpress: ^1.1.2
Requires (Dev)
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-strict-rules: ^1.5
- roave/security-advisories: dev-latest
- dev-master
- 3.4.1
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.0
- 3.0.0
- 2.11.1
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.1
- 2.8.0
- 2.7.1
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.0
- 2.2.1
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.1
- 2.0.0
- 1.9.0
- 1.8.0
- 1.7.1
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.0
- v1.0.0-beta-4
- v1.0.0-beta-3
- v1.0.0-beta-2
- v1.0.0-beta-1
- dev-develop
- dev-feature/get_approved_comments
This package is auto-updated.
Last update: 2024-11-03 02:06:07 UTC
README
Usage
Install via composer
composer require lipemat/phpstan-wordpress
Included Stubs
- The semi-official phpstan-wordpress stubs.
- Custom stubs
wp.php
some additional stubs for WordPress
Optional Stubs
- WP-CLI stubs.
- WP-CLI Tools Stubs.
- CMB2 stubs
- Genesis stubs
- VIP stubs some stubs for WP VIP environments.
These may be selectively added to your phpstan.neon
or phpstan.neon.dist
like so:
When using library as a global install
scanFiles: - %rootDir%/../../../stubs/cmb2/cmb2-3.10.php - %rootDir%/../../../stubs/genesis/genesis-3.4.php - %rootDir%/../../../stubs/wp-cli/php-cli-tools-0.11.php - %rootDir%/../../../stubs/vip.php - %rootDir%/../../php-stubs/wp-cli-stubs/wp-cli-stubs.php - %rootDir%/../../php-stubs/wp-cli-stubs/wp-cli-commands-stubs.php - %rootDir%/../../php-stubs/wp-cli-stubs/wp-cli-i18n-stubs.php
When using library as composer dependency
scanFiles: - %rootDir%/../../lipemat/phpstan-wordpress/stubs/cmb2/cmb2-3.10.php - %rootDir%/../../lipemat/phpstan-wordpress/stubs/genesis/genesis-3.4.php - %rootDir%/../../lipemat/phpstan-wordpress/stubs/wp-cli/php-cli-tools-0.11.php - %rootDir%/../../lipemat/phpstan-wordpress/stubs/vip.php - %rootDir%/../../php-stubs/wp-cli-stubs/wp-cli-stubs.php - %rootDir%/../../php-stubs/wp-cli-stubs/wp-cli-commands-stubs.php - %rootDir%/../../php-stubs/wp-cli-stubs/wp-cli-i18n-stubs.php
Alternatively, you may replace %rootDir%/../../
with the relative path to your vendor
directory.
Example wp-content/plugins/core/vendor/lipemat/phpstan-wordpress/stubs/cmb2/cmb2-3.10.php
Utility Types
\AtLeast<T, U>
Mark a set of array shape keys as required while making the rest optional.
/** * @phpstan-var \AtLeast<array{a?: string, b?: string}, 'a'> $array * // results: array{a: string, b?: string} */
\Exclude<T, K>
Exclude the specified keys from an array shape.
/** * @phpstan-var \Exclude<array{a: string, b: string}, 'a'> $array * // results: array{b: string} */
\Partial<T>
Mark either all or specified keys in an array shape as optional.
\Partial<T>
: Mark all keys as optional.\Partial<T, K>
: Mark only the specified keys as optional.
/** * @phpstan-var \Optional<array{a: string, b: string}> $array * // results: array{a?: string, b?: string} * * @phpstan-var \Optional<array{a: string, b: string}, 'b'> $array * // results: array{a: string, b?: string} */
\Pick<T, K>
Pick only the specified keys from an array shape.
/** * @phpstan-var \Pick<array{a: string, b: string}, 'a'> $array * // results: array{a: string} */
\Required<T>
Mark either all or specified keys in an array shape as required.
\Required<T>
: Mark all keys as required.\Required<T, K>
: Mark only the specified keys as required.
/** * @phpstan-var \Required<array{a?: string, b?: string}> $array * // results: array{a: string, b: string} * * @phpstan-var \Required<array{a?: string, b?: string}, 'b'> $array * // results: array{a?: string, b: string} */
\Sarcastic<T>
Mark a type as an unpredictable random value.
This utility is extremely useful in everyday projects.
/** * @phpstan-var \Sarcastic<string> $string * // results: anyone's guess */
\Union<T, U, ...X>
Combine two or more array shapes as if you were using array_merge
with the second array overwriting the first.
/** * @phpstan-var \Union<array{a: string}, array{b: string}> $array * // results: array{a: string, b: string} */
Optional Included Rules
As we move toward a world where we use composition over inheritance, we need to be more strict about how we write our code. These optional rules do not get us all the way there, but they are a step in the right direction while still being viable for a WordPress project.
Enable in your phpstan.neon
or phpstan.neon.dist
like so:
includes: # If you are using this library as a global install - %rootDir%/../../../rules.neon # If you are using this library as a composer dependency - %rootDir%/../../lipemat/phpstan-wordpress/rules.neon
- Prevent using the
compact
function. - Require all classes to be either abstract or final.
- Require a
declare(strict_types=1)
statement in every non-empty file. - Prevent using default values in class constructors.
- Prevent declaring a method
protected
in a final class in favor ofprivate
. - Prevent using the
switch
statement in favor ofmatch
. - Require any concrete methods in abstract classes to be
private
orfinal
. - Prevent child classes from skipping parent parameter types.
- Prevent calls to methods on unknown classes.
- Prefer returning null over false unless boolean is expected.
- Prohibit using
ArrayAccess
to access class data. - Require
instance of
instead ofisset
for object verification.
Distributed plugins or themes
Some rules assume you are working on a private project which will not be distributed to the community.
If your project will be distributed, you may add the nonDistributed
parameter to the lipemat
parameter.
parameters: lipemat: nonDistributed: false
The nonDistributed
set to false
parameter will disable the following rules:
- Require all classes to be either abstract or final.
- Require a
declare(strict_types=1)
statement in every non-empty file. - Require any concrete methods in abstract classes to be
private
orfinal
.
Prevent any inheritance
Adding the noExtends
parameter to the lipemat
parameter will prevent having or extending any unlisted abstract classes.
parameters: lipemat: allowedToBeExtended: - Lipe\Project\SomeAbstractClass - Lipe\Project\SomeOtherAbstractClass noExtends: true
You may omit the allowedToBeExtended
parameter to prevent extending any abstract classes.