We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 489e0be + aa8010c commit 2807d9fCopy full SHA for 2807d9f
.github/workflows/test.yml
@@ -11,6 +11,8 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v3
14
+ - name: Test PHP 8.2
15
+ run: make test PHP=8.2-rc
16
- name: Test PHP 8.1
17
run: make test PHP=8.1
18
- name: Test PHP 8.0
src/JS.php
@@ -127,7 +127,7 @@ class JS extends Minify
127
*/
128
public function __construct()
129
{
130
- call_user_func_array(array('parent', '__construct'), func_get_args());
+ call_user_func_array(array('\\MatthiasMullie\Minify\\Minify', '__construct'), func_get_args());
131
132
$dataDir = __DIR__ . '/../data/js/';
133
$options = FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES;
0 commit comments