Skip to content

Commit a93364a

Browse files
committed
cs fix and twig
1 parent a2c9792 commit a93364a

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

public/index.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
declare(strict_types=1);
4+
45
use Mezzio\Application;
56
use Psr\Container\ContainerInterface;
67

src/App/src/RoutesDelegator.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
namespace Light\App;
66

77
use Laminas\Diactoros\Response\RedirectResponse;
8-
use Light\App\Handler\GetIndexMarkdownHandler;
98
use Light\App\Handler\GetIndexViewHandler;
109
use Mezzio\Application;
1110
use Psr\Container\ContainerInterface;

src/Blog/templates/page/author-resource.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends '@layout/default.html.twig' %}
2-
{% block json_ld %} {% include '@jsonld/author-resource.jsonld.twig'%} {% endblock %}
2+
{% block json_ld %} {{ include('@jsonld/author-resource.jsonld.twig') }} {% endblock %}
33

44
{% block title %}{{ author.name }}{% endblock %}
55

src/Blog/templates/page/contact.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends '@layout/default.html.twig' %}
2-
{% block json_ld %} {% include '@jsonld/contact.jsonld.twig'%} {% endblock %}
2+
{% block json_ld %} {{ include('@jsonld/contact.jsonld.twig') }} {% endblock %}
33

44
{% block title %}Contact{% endblock %}
55

0 commit comments

Comments
 (0)