We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be70f5e commit 43566f1Copy full SHA for 43566f1
example/demo.php
@@ -10,7 +10,7 @@
10
<head>
11
<meta charset="UTF-8" />
12
<title>jfcherng/php-diff - Examples</title>
13
- <style><?= DiffHelper::getStyleSheet() ?></style>
+ <style><?php echo DiffHelper::getStyleSheet(); ?></style>
14
</head>
15
<body>
16
<?php
src/DiffHelper.php
@@ -25,7 +25,7 @@ public static function getProjectDirectory(): string
25
{
26
static $path;
27
28
- return $path = $path ?? realpath(__DIR__ . '/..');
+ return $path = $path ?? \realpath(__DIR__ . '/..');
29
}
30
31
/**
0 commit comments