Fix cs and phpstan issues

This commit is contained in:
2025-05-21 15:07:21 +02:00
parent d60312d4a2
commit 3969e12633
4 changed files with 11 additions and 12 deletions

View File

@@ -276,7 +276,7 @@ class Event implements HasCenterInterface, HasScopeInterface, TrackCreationInter
/**
* @deprecated
*/
public function getScope(): ?Scope
public function getScope(): Scope
{
return $this->getCircle();
}
@@ -390,14 +390,19 @@ class Event implements HasCenterInterface, HasScopeInterface, TrackCreationInter
$this->documents = $documents;
}
/**
* @deprecated
*/
public function getOrganizationCost(): string
{
return $this->organizationCost;
}
/**
* @deprecated
*/
public function setOrganizationCost(string $organizationCost): void
{
$this->organizationCost = $organizationCost;
}
}