Skip to content

Commit 64ad721

Browse files
committed
4992: Applied coding standards
1 parent 782eab2 commit 64ad721

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

public/fixture/resources.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/Entity/Tenant/InteractiveSlideConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Symfony\Component\Serializer\Annotation\Ignore;
1010

1111
#[ORM\Entity(repositoryClass: InteractiveSlideRepository::class)]
12-
#[ORM\Table(name: "interactive_slide")]
12+
#[ORM\Table(name: 'interactive_slide')]
1313
class InteractiveSlideConfig extends AbstractTenantScopedEntity
1414
{
1515
#[Ignore]
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace App\Exceptions;
46

57
class ForbiddenException extends \Exception
68
{
7-
89
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace App\Exceptions;
46

57
class NotAcceptableException extends \Exception
68
{
7-
89
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
namespace App\Exceptions;
46

57
class TooManyRequestsException extends \Exception
68
{
7-
89
}

src/InteractiveSlide/InstantBook.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,7 @@ function (CacheItemInterface $item) use ($now): \DateTime {
389389

390390
/**
391391
* @see https://docs.microsoft.com/en-us/graph/api/calendar-getschedule?view=graph-rest-1.0&tabs=http
392+
*
392393
* @throws \Throwable
393394
*/
394395
private function getBusyIntervals(string $token, array $resources, \DateTime $startTime, \DateTime $endTime): array

0 commit comments

Comments
 (0)