Compare commits

..

No commits in common. "12f68522995dbd900c42d38ca11c36948cb7b4ad" and "ebf856252c12829614df25dc6e15e99b8afa193e" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -1,9 +1,8 @@
FROM php:8.1.6-fpm as php FROM php:8.1.6-fpm as php
WORKDIR /app WORKDIR /app
RUN ls /app
RUN apt-get update RUN apt-get update
RUN apt-get install -y rsync libcurl3-dev apt-utils zlib1g-dev libpng-dev libicu-dev libonig-dev unzip poppler-utils RUN apt-get install -y rsync libcurl3-dev apt-utils zlib1g-dev libpng-dev libicu-dev libonig-dev unzip
RUN apt-get install -y --no-install-recommends texlive-base texlive-latex-base texlive-pictures texlive-latex-extra texlive-lang-german texlive-plain-generic texlive-fonts-recommended texlive-fonts-extra texlive-extra-utils RUN apt-get install -y --no-install-recommends texlive-base texlive-latex-base texlive-pictures texlive-latex-extra texlive-lang-german texlive-plain-generic texlive-fonts-recommended texlive-fonts-extra
RUN docker-php-ext-install pdo_mysql curl gd exif intl mbstring pcntl RUN docker-php-ext-install pdo_mysql curl gd exif intl mbstring pcntl
RUN pecl install redis && docker-php-ext-enable redis RUN pecl install redis && docker-php-ext-enable redis
RUN usermod -s /bin/bash www-data RUN usermod -s /bin/bash www-data

View File

@ -27,7 +27,7 @@ class InvoicesMassStored
/** /**
* Get the channels the event should broadcast on. * Get the channels the event should broadcast on.
* *
* @return PrivateChannel * @return \Illuminate\Broadcasting\Channel|array
*/ */
public function broadcastOn() public function broadcastOn()
{ {