From 2a2ba4bbcc4d1d83e66cddddaa21aab8a61f07e5 Mon Sep 17 00:00:00 2001 From: AntoineGonzalez <45924026+AntoineGonzalez@users.noreply.github.com> Date: Fri, 31 May 2024 10:51:50 +0200 Subject: [PATCH] chore: bump git version in dockerfile --- Dockerfile | 2 +- src/Entity/Species.php | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8be8145..2c12616 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY --from=composer /usr/bin/composer /usr/bin/composer RUN apk add --no-cache \ bash==5.2.21-r0 \ - git==2.43.0-r0 \ + git==2.43.4-r0 \ icu-dev==74.1-r0 RUN mkdir -p /usr/src/app \ diff --git a/src/Entity/Species.php b/src/Entity/Species.php index 61d5a90..b5e1f54 100644 --- a/src/Entity/Species.php +++ b/src/Entity/Species.php @@ -15,9 +15,6 @@ public function __construct( private array $habitats, private string $feeding, ) { - $this->name = $name; - $this->habitats = $habitats; - $this->feeding = $feeding; $this->dinosaurs = new ArrayCollection(); }