Skip to content

Commit

Permalink
Downgrade to php 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vokamut committed Jun 8, 2022
1 parent ac8fc6b commit 220f3ab
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,20 @@ function logger(string $message): void
new class {
private const IMAGE_DIR = __DIR__ . '/images';

private ?string $imageFile = null;
private ?string $logFile = null;

private array $params;
/**
* @var string|null
*/
private $imageFile;

/**
* @var string|null
*/
private $logFile;

/**
* @var array
*/
private $params;

public function __construct()
{
Expand Down

0 comments on commit 220f3ab

Please sign in to comment.