Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

Apps/View/Front/default/main/index.php (1 issue)

Severity
1
<?php
2
/** @var \Ffcms\Templex\Template\Template $this */
3
$this->layout('_layouts/default', [
4
    'title' => 'Developer main page'
5
])
6
?>
7
8
<?php $this->start('body') ?>
9
10
<div class="well well-sm">
11
    <h1>Developer main page</h1>
12
    <hr />
13
</div>
14
15
<?= \Ffcms\Core\Helper\Security::password_hash('d7k1p9j2') ?><br />
0 ignored issues
show
Deprecated Code introduced by
The function Ffcms\Core\Helper\Security::password_hash() has been deprecated. ( Ignorable by Annotation )

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

15
<?= /** @scrutinizer ignore-deprecated */ \Ffcms\Core\Helper\Security::password_hash('d7k1p9j2') ?><br />
Loading history...
16
<?= \Ffcms\Core\Helper\Crypt::passwordHash('d7k1p9j2') ?>
17
18
<script>
19
    $(function(){
20
        console.log('Use $()');
21
    });
22
23
    $(document).ready(function(){
24
        console.log('use document');
25
    })
26
</script>
27
28
<?php $this->stop() ?>