@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | foreach (self::CRAFT_QL_FIELDS as $fieldHandle => $containerType) { |
58 | 58 | $seomaticField |
59 | 59 | ->addStringField($fieldHandle) |
60 | - ->resolve(function (array $data) use ($containerType) { |
|
60 | + ->resolve(function(array $data) use ($containerType) { |
|
61 | 61 | // $root contains the data returned by the field below |
62 | 62 | $result = ContainerHelper::getContainerArrays( |
63 | 63 | [$containerType], |
@@ -74,13 +74,13 @@ discard block |
||
74 | 74 | } |
75 | 75 | // Add the root |
76 | 76 | $event->schema->addField('seomatic') |
77 | - ->arguments(function (FieldBuilder $field) { |
|
77 | + ->arguments(function(FieldBuilder $field) { |
|
78 | 78 | $field->addIntArgument('siteId'); |
79 | 79 | $field->addStringArgument('uri'); |
80 | 80 | $field->addBooleanArgument('asArray'); |
81 | 81 | }) |
82 | 82 | ->type($seomaticField) |
83 | - ->resolve(function ($root, $args, $context, $info) { |
|
83 | + ->resolve(function($root, $args, $context, $info) { |
|
84 | 84 | // If our root is an Element, extract the URI and siteId from it |
85 | 85 | if ($root instanceof Element) { |
86 | 86 | /** Element $root */ |
@@ -78,7 +78,7 @@ |
||
78 | 78 | // Set the property |
79 | 79 | $value = $args[0]; |
80 | 80 | if (\is_object($value) && $value instanceof Markup) { |
81 | - $value = (string)$value; |
|
81 | + $value = (string) $value; |
|
82 | 82 | } |
83 | 83 | $property->setValue($this, $value); |
84 | 84 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | 'seomatic' => [ |
36 | 36 | 'type' => SeomaticInterface::getType(), |
37 | 37 | 'args' => SeomaticArguments::getArguments(), |
38 | - 'resolve' => SeomaticResolver::class . '::resolve', |
|
38 | + 'resolve' => SeomaticResolver::class.'::resolve', |
|
39 | 39 | 'description' => 'This query is used to query for SEOmatic meta data.' |
40 | 40 | ], |
41 | 41 | ]; |
@@ -41,17 +41,17 @@ |
||
41 | 41 | $seomaticType = GqlEntityRegistry::getEntity($typeName) |
42 | 42 | ?: GqlEntityRegistry::createEntity($typeName, new SeomaticType([ |
43 | 43 | 'name' => $typeName, |
44 | - 'args' => function () use ($seomaticArgs) { |
|
44 | + 'args' => function() use ($seomaticArgs) { |
|
45 | 45 | return $seomaticArgs; |
46 | 46 | }, |
47 | - 'fields' => function () use ($seomaticFields) { |
|
47 | + 'fields' => function() use ($seomaticFields) { |
|
48 | 48 | return $seomaticFields; |
49 | 49 | }, |
50 | 50 | 'description' => 'This entity has all the SEOmatic fields', |
51 | 51 | ])); |
52 | 52 | |
53 | 53 | $gqlTypes[$typeName] = $seomaticType; |
54 | - TypeLoader::registerType($typeName, function () use ($seomaticType) { |
|
54 | + TypeLoader::registerType($typeName, function() use ($seomaticType) { |
|
55 | 55 | return $seomaticType; |
56 | 56 | }); |
57 | 57 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | 'name' => 'General', |
25 | 25 | 'description' => 'Script Tags', |
26 | 26 | 'handle' => ScriptService::GENERAL_HANDLE, |
27 | - 'class' => (string)MetaScriptContainer::class, |
|
27 | + 'class' => (string) MetaScriptContainer::class, |
|
28 | 28 | 'include' => true, |
29 | 29 | 'dependencies' => [ |
30 | 30 | ], |
@@ -24,7 +24,7 @@ |
||
24 | 24 | 'name' => 'General', |
25 | 25 | 'description' => 'Link Tags', |
26 | 26 | 'handle' => LinkService::GENERAL_HANDLE, |
27 | - 'class' => (string)MetaLinkContainer::class, |
|
27 | + 'class' => (string) MetaLinkContainer::class, |
|
28 | 28 | 'include' => true, |
29 | 29 | 'dependencies' => [ |
30 | 30 | ], |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | 'name' => 'General', |
25 | 25 | 'description' => 'General Meta Tags', |
26 | 26 | 'handle' => TagService::GENERAL_HANDLE, |
27 | - 'class' => (string)MetaTagContainer::class, |
|
27 | + 'class' => (string) MetaTagContainer::class, |
|
28 | 28 | 'include' => true, |
29 | 29 | 'dependencies' => [ |
30 | 30 | ], |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | 'name' => 'Facebook', |
36 | 36 | 'description' => 'Facebook OpenGraph Meta Tags', |
37 | 37 | 'handle' => TagService::FACEBOOK_HANDLE, |
38 | - 'class' => (string)MetaTagContainer::class, |
|
38 | + 'class' => (string) MetaTagContainer::class, |
|
39 | 39 | 'include' => true, |
40 | 40 | 'dependencies' => [ |
41 | 41 | ], |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | 'name' => 'Twitter', |
47 | 47 | 'description' => 'Twitter Card Meta Tags', |
48 | 48 | 'handle' => TagService::TWITTER_HANDLE, |
49 | - 'class' => (string)MetaTagContainer::class, |
|
49 | + 'class' => (string) MetaTagContainer::class, |
|
50 | 50 | 'include' => true, |
51 | 51 | 'dependencies' => [ |
52 | 52 | ], |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | 'name' => 'Miscellaneous', |
58 | 58 | 'description' => 'Miscellaneous Meta Tags', |
59 | 59 | 'handle' => TagService::MISC_HANDLE, |
60 | - 'class' => (string)MetaTagContainer::class, |
|
60 | + 'class' => (string) MetaTagContainer::class, |
|
61 | 61 | 'include' => true, |
62 | 62 | 'dependencies' => [ |
63 | 63 | ], |
@@ -71,7 +71,7 @@ |
||
71 | 71 | $serializedNonces = implode(" ", $cspNonces); |
72 | 72 | $cspDirective = self::CSP_DIRECTIVE; |
73 | 73 | $cspValue = "{$cspDirective} {$serializedNonces};"; |
74 | - foreach(self::CSP_HEADERS as $cspHeader) { |
|
74 | + foreach (self::CSP_HEADERS as $cspHeader) { |
|
75 | 75 | Craft::$app->getResponse()->getHeaders()->add($cspHeader, $cspValue); |
76 | 76 | } |
77 | 77 | } |
@@ -5,12 +5,12 @@ |
||
5 | 5 | ini_set('date.timezone', 'UTC'); |
6 | 6 | |
7 | 7 | // Use the current installation of Craft |
8 | -define('CRAFT_STORAGE_PATH', __DIR__ . '/_craft/storage'); |
|
9 | -define('CRAFT_TEMPLATES_PATH', __DIR__ . '/_craft/templates'); |
|
10 | -define('CRAFT_CONFIG_PATH', __DIR__ . '/_craft/config'); |
|
11 | -define('CRAFT_MIGRATIONS_PATH', __DIR__ . '/_craft/migrations'); |
|
12 | -define('CRAFT_TRANSLATIONS_PATH', __DIR__ . '/_craft/translations'); |
|
13 | -define('CRAFT_VENDOR_PATH', dirname(__DIR__) . '/vendor'); |
|
8 | +define('CRAFT_STORAGE_PATH', __DIR__.'/_craft/storage'); |
|
9 | +define('CRAFT_TEMPLATES_PATH', __DIR__.'/_craft/templates'); |
|
10 | +define('CRAFT_CONFIG_PATH', __DIR__.'/_craft/config'); |
|
11 | +define('CRAFT_MIGRATIONS_PATH', __DIR__.'/_craft/migrations'); |
|
12 | +define('CRAFT_TRANSLATIONS_PATH', __DIR__.'/_craft/translations'); |
|
13 | +define('CRAFT_VENDOR_PATH', dirname(__DIR__).'/vendor'); |
|
14 | 14 | define('CRAFT_TESTS_PATH', __DIR__); |
15 | 15 | |
16 | 16 | $devMode = true; |