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
Bug
introduced
by
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
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
![]() |
|||||
57 | } |
||||
58 | } |
||||
59 |