AppBundle\Model\RecipeCollection::__construct PHP Method

__construct() public method

public __construct ( Recipe[] $recipes = [], integer $offset = null, integer $limit = null )
$recipes Recipe[]
$offset integer
$limit integer
    public function __construct($recipes = array(), $offset = null, $limit = null)
    {
        $this->recipes = $recipes;
        $this->offset = $offset;
        $this->limit = $limit;
    }