AppBundle\Model\RecipeCollection::__construct PHP 메소드

__construct() 공개 메소드

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;
    }