Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/InvalidJobException.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class InvalidJobException extends \Exception
* @param int $code
* @param Throwable|null $previous
*/
public function __construct($serialized, $message = '', $code = 0, Throwable $previous = null)
public function __construct($serialized, $message = '', $code = 0, $previous = null)
{
$this->serialized = $serialized;
parent::__construct($message, $code, $previous);
Expand Down
4 changes: 3 additions & 1 deletion tests/docker/php/7.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM php:7.1-cli

RUN apt-get update \
RUN echo "deb http://archive.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \
&& echo "deb http://archive.debian.org/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list \
&& apt-get update --allow-releaseinfo-change \
&& apt-get install -y unzip curl zlib1g-dev libicu-dev libpq-dev libgearman-dev

RUN docker-php-ext-install zip pcntl bcmath pdo_mysql intl pdo_pgsql
Expand Down
6 changes: 4 additions & 2 deletions tests/docker/php/7.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM php:7.2-cli

RUN apt-get update \
&& apt-get install -y unzip libbz2-dev curl zlib1g-dev libicu-dev libpq-dev libgearman-dev
RUN echo "deb http://archive.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \
&& echo "deb http://archive.debian.org/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list \
&& apt-get update --allow-releaseinfo-change \
&& apt-get install -y unzip curl zlib1g-dev libicu-dev libpq-dev libgearman-dev

RUN docker-php-ext-install zip pcntl bcmath pdo_mysql intl pdo_pgsql

Expand Down