Issues (84)

examples/htdocs/index.php (2 issues)

Labels
1
<?php 
2
3
declare(strict_types=1);
4
5
use function AppLocalize\pt;
0 ignored issues
show
The function AppLocalize\pt was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
6
7
require_once 'prepend.php';
8
9
?>
10
<!DOCTYPE html>
11
<html lang="en">
12
    <head>
13
        <meta charset="utf-8">
14
		<title><?php pt('URL syntax highlighting') ?></title>
0 ignored issues
show
The function pt was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

14
		<title><?php /** @scrutinizer ignore-call */ pt('URL syntax highlighting') ?></title>
Loading history...
15
		<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
16
		<link rel="stylesheet" type="text/css" href="css/ui.css">
17
	</head>
18
	<body>
19
		<h1>Application Utils: <?php pt('Examples') ?></h1>
20
		<p>
21
			<?php pt('The following is a collection of examples for features that have a visual component.') ?>
22
		</p>
23
		<br>
24
		<ul>
25
			<li><a href="URLInfo/highlighting.php"><?php pt('URL syntax highlighting') ?></a></li>
26
        </ul>
27
	</body>
28
</html>
29