浏览代码

Refactoring services

develop
Guillaume 3 年前
父节点
当前提交
8e6aece552
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. +5
    -2
      Factory/Reminder/ReminderFactory.php

+ 5
- 2
Factory/Reminder/ReminderFactory.php 查看文件

@@ -8,8 +8,11 @@ use Lc\SovBundle\Model\Reminder\ReminderInterface;

class ReminderFactory extends AbstractFactory implements ReminderFactoryInterface
{
public function create(string $crudAction = null, string $crudControllerFqcn = null, int $entityId = null): ReminderInterface
{
public function create(
string $crudAction = null,
string $crudControllerFqcn = null,
int $entityId = null
): ReminderInterface {
$reminder = new Reminder();

$reminder->setCrudAction($crudAction);

正在加载...
取消
保存