Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon authored and github-actions[bot] committed May 23, 2024
1 parent 84a2fd7 commit 2920949
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Schedule/Hydrator/ScheduleHydrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ public function hydrate(Task $task): Schedule
$task->getUserId()
);
}
}
}
2 changes: 1 addition & 1 deletion src/Schedule/Hydrator/ScheduleHydratorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
interface ScheduleHydratorInterface
{
public function hydrate(Task $task): Schedule;
}
}
15 changes: 14 additions & 1 deletion src/Schedule/Repository/ScheduleRepositoryInterface.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
<?php

/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/

namespace Pimcore\Bundle\StudioBackendBundle\Schedule\Repository;

interface ScheduleRepositoryInterface
{
public function listSchedules(string $elementType, int $id): array;
}
}
2 changes: 1 addition & 1 deletion src/Schedule/Service/ScheduleServiceInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
interface ScheduleServiceInterface
{
public function listSchedules(string $elementType, int $id): array;
}
}

0 comments on commit 2920949

Please sign in to comment.