Issues (66)

src/helpers/helpers.php (8 issues)

Labels
Severity
1
<?php
2
3
use Lionix\SeoManager\Facades\SeoManager;
4
5
if (!function_exists('metaData')) {
6
    function metaData($property = null)
7
    {
8
        return SeoManager::metaData($property);
0 ignored issues
show
The method metaData() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

8
        return SeoManager::/** @scrutinizer ignore-call */ metaData($property);
Loading history...
9
    }
10
}
11
12
if (!function_exists('metaKeywords')) {
13
    function metaKeywords()
14
    {
15
        return SeoManager::metaKeywords();
0 ignored issues
show
The method metaKeywords() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

15
        return SeoManager::/** @scrutinizer ignore-call */ metaKeywords();
Loading history...
16
    }
17
}
18
19
if (!function_exists('metaTitle')) {
20
    function metaTitle()
21
    {
22
        return SeoManager::metaTitle();
0 ignored issues
show
The method metaTitle() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

22
        return SeoManager::/** @scrutinizer ignore-call */ metaTitle();
Loading history...
23
    }
24
}
25
if (!function_exists('metaUrl')) {
26
    function metaUrl()
27
    {
28
        return SeoManager::metaUrl();
0 ignored issues
show
The method metaUrl() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

28
        return SeoManager::/** @scrutinizer ignore-call */ metaUrl();
Loading history...
29
    }
30
}
31
32
if (!function_exists('metaAuthor')) {
33
    function metaAuthor()
34
    {
35
        return SeoManager::metaAuthor();
0 ignored issues
show
The method metaAuthor() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

35
        return SeoManager::/** @scrutinizer ignore-call */ metaAuthor();
Loading history...
36
    }
37
}
38
39
if (!function_exists('metaDescription')) {
40
    function metaDescription()
41
    {
42
        return SeoManager::metaDescription();
0 ignored issues
show
The method metaDescription() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

42
        return SeoManager::/** @scrutinizer ignore-call */ metaDescription();
Loading history...
43
    }
44
}
45
46
if (!function_exists('metaTitleDynamic')) {
47
    function metaTitleDynamic()
48
    {
49
        return SeoManager::metaTitleDynamic();
0 ignored issues
show
The method metaTitleDynamic() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

49
        return SeoManager::/** @scrutinizer ignore-call */ metaTitleDynamic();
Loading history...
50
    }
51
}
52
53
if (!function_exists('metaOpenGraph')) {
54
    function metaOpenGraph($property = null)
55
    {
56
        return SeoManager::metaOpenGraph($property);
0 ignored issues
show
The method metaOpenGraph() does not exist on Lionix\SeoManager\Facades\SeoManager. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

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

56
        return SeoManager::/** @scrutinizer ignore-call */ metaOpenGraph($property);
Loading history...
57
    }
58
}
59