Skip to content

Commit

Permalink
Remove property types to keep PHP 7.3 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
bennothommo committed Jul 8, 2024
1 parent b878a73 commit 69d298d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/Assetic/Filter/BaseProcessFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ abstract class BaseProcessFilter extends BaseFilter
protected $binaryPath;

/**
* Defines the working directory for the process.
* @var string|null Defines the working directory for the process.
*/
protected ?string $workingDirectory = null;
protected $workingDirectory = null;

/**
* @var boolean Flag to indicate that the process will output the result to the input file
Expand Down
12 changes: 6 additions & 6 deletions src/Assetic/Filter/TailwindCssFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ class TailwindCssFilter extends BaseProcessFilter
protected $binaryPath = '/usr/bin/tailwindcss';

/**
* Path to the Tailwind configuration file.
* @var string|null Path to the Tailwind configuration file.
*/
protected ?string $configPath = null;
protected $configPath = null;

/**
* Is minification enabled?
* @var bool Is minification enabled?
*/
protected bool $minify = false;
protected $minify = false;

/**
* Is autoprefixing enabled?
* @var bool Is autoprefixing enabled?
*/
protected bool $autoprefix = true;
protected $autoprefix = true;

/**
* Sets the path for the configuration file.
Expand Down

0 comments on commit 69d298d

Please sign in to comment.