Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ includes:
- tests/phpstan/baselines/parameter.defaultValue.neon
- tests/phpstan/baselines/parameter.notFound.neon
- tests/phpstan/baselines/parameter.phpDocType.neon
- tests/phpstan/baselines/parameter.unresolvableType.neon
- tests/phpstan/baselines/parameterByRef.type.neon
- tests/phpstan/baselines/parameterByRef.unusedType.neon
- tests/phpstan/baselines/property.defaultValue.neon
Expand Down
8 changes: 4 additions & 4 deletions src/wp-includes/class-wp-feed-cache-transient.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ class WP_Feed_Cache_Transient implements SimplePie\Cache\Base {
* @since 3.2.0 Updated to use a PHP5 constructor.
* @since 6.7.0 Parameter names have been updated to be in line with the `SimplePie\Cache\Base` interface.
*
* @param string $location URL location (scheme is used to determine handler).
* @param string $name Unique identifier for cache object.
* @param Base::TYPE_FEED|Base::TYPE_IMAGE $type Either `TYPE_FEED` ('spc') for SimplePie data,
* or `TYPE_IMAGE` ('spi') for image data.
* @param string $location URL location (scheme is used to determine handler).
* @param string $name Unique identifier for cache object.
* @param SimplePie\Cache\Base::TYPE_FEED|SimplePie\Cache\Base::TYPE_IMAGE $type Either `TYPE_FEED` ('spc') for SimplePie data,
* or `TYPE_IMAGE` ('spi') for image data.
*/
public function __construct( $location, $name, $type ) {
$this->name = 'feed_' . $name;
Expand Down
25 changes: 0 additions & 25 deletions tests/phpstan/baselines/parameter.unresolvableType.neon

This file was deleted.

Loading