for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Deployee\Plugins\ShopwareTasks\Definitions;
use Deployee\Plugins\Deploy\Definitions\Parameter\ParameterCollection;
use Deployee\Plugins\Deploy\Definitions\Parameter\ParameterCollectionInterface;
use Deployee\Plugins\Deploy\Definitions\Tasks\TaskDefinitionInterface;
class GenerateThemeCacheDefinition implements TaskDefinitionInterface
{
/**
* @var int
*/
private $shopId;
* @param array $shopId
public function __construct(array $shopId = [])
$this->shopId = $shopId;
$shopId
array
integer
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
}
* @return ParameterCollectionInterface
public function define(): ParameterCollectionInterface
return new ParameterCollection(get_object_vars($this));
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..