Skip to content

Commit 975a7b8

Browse files
committed
Added missing phpdoc blocks.
1 parent 875b856 commit 975a7b8

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

src/Supporting/CommunicationProvider.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,10 @@ public function logout(): void
544544
$this->accessToken = null;
545545
}
546546

547+
/**
548+
* @return array|null
549+
* @ignore
550+
*/
547551
private function getSupportingProviders(): null|array
548552
{
549553
try {
@@ -559,6 +563,11 @@ private function getSupportingProviders(): null|array
559563
}
560564
}
561565

566+
/**
567+
* @param $provider
568+
* @return string|array|null
569+
* @ignore
570+
*/
562571
private function getOAuthIdentifier($provider): string|array|null
563572
{
564573
try {

src/Supporting/FileMakerRelation.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,12 @@ public function getFieldNames(): array
255255
return $list;
256256
}
257257

258-
private function getNumberedRecord($num): ?FileMakerRelation
258+
/**
259+
* @param int $num
260+
* @return FileMakerRelation|null
261+
* @ignore
262+
*/
263+
private function getNumberedRecord(int $num): ?FileMakerRelation
259264
{
260265
$value = null;
261266
if (isset($this->data[$num])) {

0 commit comments

Comments
 (0)