-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes necessary for compatibility with ORM 3
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ public function getIdentifier(): array; | |
* | ||
* @return ReflectionClass<T> | ||
*/ | ||
public function getReflectionClass(): ReflectionClass; | ||
public function getReflectionClass(); | ||
Check failure on line 38 in src/Persistence/Mapping/ClassMetadata.php GitHub Actions / Coding Standards / Coding Standards (8.3)
|
||
|
||
/** Checks if the given field name is a mapped identifier for this class. */ | ||
public function isIdentifier(string $fieldName): bool; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ public function getGlobalBasename(): string | |
* | ||
* @throws MappingException | ||
*/ | ||
public function getElement(string $className): ClassMetadata | ||
public function getElement(string $className) | ||
Check failure on line 74 in src/Persistence/Mapping/Driver/FileDriver.php GitHub Actions / Coding Standards / Coding Standards (8.3)
|
||
{ | ||
if ($this->classCache === null) { | ||
$this->initialize(); | ||
|
@@ -139,7 +139,7 @@ public function getAllClassNames(): array | |
* @return ClassMetadata[] | ||
* @psalm-return array<class-string, ClassMetadata<object>> | ||
*/ | ||
abstract protected function loadMappingFile(string $file): array; | ||
abstract protected function loadMappingFile(string $file); | ||
Check failure on line 142 in src/Persistence/Mapping/Driver/FileDriver.php GitHub Actions / Coding Standards / Coding Standards (8.3)
|
||
|
||
/** | ||
* Initializes the class cache from all the global files. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters