Completed
Push — master ( 7de195...5f1ca1 )
by Henry
08:39
created

includes/Bootstrap/Cache.php (4 issues)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
namespace Redaxscript\Bootstrap;
3
4
use Redaxscript\Filter;
5
use function getenv;
6
7
/**
8
 * children class to boot the cache
9
 *
10
 * @since 3.1.0
11
 *
12
 * @package Redaxscript
13
 * @category Bootstrap
14
 * @author Henry Ruhs
15
 */
16
17
class Cache extends BootstrapAbstract
18
{
19
	/**
20
	 * automate run
21
	 *
22
	 * @since 3.1.0
23
	 */
24
25 3
	public function autorun() : void
26
	{
27 3
		$filterBoolean = new Filter\Boolean();
28 3
		$noCache = $filterBoolean->sanitize($this->_request->getQuery('no-cache')) || getenv('NO_CACHE');
29
30
		/* set the registry */
31
32 3
		$this->_registry->set('noAssetCache', false);
0 ignored issues
show
false is of type boolean, but the function expects a string|array|null.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
33 3
		$this->_registry->set('noPageCache', false);
0 ignored issues
show
false is of type boolean, but the function expects a string|array|null.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
34 3
		if ($this->_registry->get('loggedIn') === $this->_registry->get('token') || $noCache)
35
		{
36 2
			$this->_registry->set('noAssetCache', true);
0 ignored issues
show
true is of type boolean, but the function expects a string|array|null.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
37 2
			$this->_registry->set('noPageCache', true);
0 ignored issues
show
true is of type boolean, but the function expects a string|array|null.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
38
		}
39 3
	}
40
}
41