浏览代码

Correctifs divers

feature/ticket
Guillaume 3 年前
父节点
当前提交
214e3bf002
共有 2 个文件被更改,包括 6 次插入1 次删除
  1. +1
    -1
      config/packages/lc_sov.yaml
  2. +5
    -0
      src/Entity/Site/Page.php

+ 1
- 1
config/packages/lc_sov.yaml 查看文件

@@ -1,3 +1,3 @@
# see https://symfony.com/doc/current/reference/configuration/framework.html
lc_sov:
homepage_route: 'home'
homepage_route: 'app_homepage'

+ 5
- 0
src/Entity/Site/Page.php 查看文件

@@ -37,6 +37,11 @@ class Page extends AbstractFullEntity
$this->gallery = new ArrayCollection();
}

public function __toString()
{
return $this->getTitle() ;
}

public function getId(): ?int
{
return $this->id;

正在加载...
取消
保存