fractal icon indicating copy to clipboard operation
fractal copied to clipboard

Breaking change between 0.19.2 and 0.20.0

Open vlowe85 opened this issue 3 years ago • 1 comments

Is there an upgrade guide for breaking changes between versions?

vlowe85 avatar Jun 13 '22 14:06 vlowe85

See this commit https://github.com/thephpleague/fractal/commit/5bf32b5fa3717b360d31348793d9fe9cb65fe337 (Added PHP 7.4 types)

protected function item($data, $transformer, ?string $resourceKey = null): Item item still works ok as not enforcing callable, primitive is broken.. protected function primitive($data, ?callable $transformer = null, ?string $resourceKey = null): Primitive

when used like

    public function includeFavorites(User $user)
    {
        return $this->primitive($user, new FavoritesTransformer);
    }

vlowe85 avatar Jun 13 '22 15:06 vlowe85