update 2023-07-22 05:43:37
This commit is contained in:
parent
3f6b24ca94
commit
fd5ed98921
@ -18,7 +18,7 @@ class Tagged << (F,LightGreen) >> #Green {
|
||||
+ __construct(Load $load, Insert $insert, ...)
|
||||
+ set(string $translation, int $book, ...) : ?array
|
||||
+ delete(string $tag) : bool
|
||||
- get(string $linker, string $translation, ...) : ?array
|
||||
- get(string $linker, string $translation, ...) : ?object
|
||||
- create(string $linker, string $translation, ...) : bool
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ note right of Tagged::get
|
||||
Get a tagged verse
|
||||
|
||||
since: 2.0.1
|
||||
return: ?array
|
||||
return: ?object
|
||||
|
||||
arguments:
|
||||
string $linker
|
||||
|
@ -180,7 +180,7 @@ final class Tagged
|
||||
* @param int $verse The verse where the note is made
|
||||
* @param string $tag The tag being added
|
||||
*
|
||||
* @return array|null Array of the tagged verse values on success
|
||||
* @return object|null Object of the tagged verse values on success
|
||||
* @since 2.0.1
|
||||
**/
|
||||
private function get(
|
||||
@ -190,13 +190,13 @@ final class Tagged
|
||||
int $chapter,
|
||||
int $verse,
|
||||
string $tag
|
||||
): ?array
|
||||
): ?object
|
||||
{
|
||||
// get tag if it exist
|
||||
if (($_tag = $this->load->item([
|
||||
'linker' => $linker,
|
||||
'translation' => $translation,
|
||||
'book' => $book,
|
||||
'book_nr' => $book,
|
||||
'chapter' => $chapter,
|
||||
'verse' => $verse,
|
||||
'tag' => $tag
|
||||
@ -242,7 +242,7 @@ final class Tagged
|
||||
'access' => 0,
|
||||
'linker' => $linker,
|
||||
'translation' => $translation,
|
||||
'book' => $book,
|
||||
'book_nr' => $book,
|
||||
'chapter' => $chapter,
|
||||
'verse' => $verse,
|
||||
'guid' => $guid
|
||||
|
@ -151,7 +151,7 @@
|
||||
* @param int $verse The verse where the note is made
|
||||
* @param string $tag The tag being added
|
||||
*
|
||||
* @return array|null Array of the tagged verse values on success
|
||||
* @return object|null Object of the tagged verse values on success
|
||||
* @since 2.0.1
|
||||
**/
|
||||
private function get(
|
||||
@ -161,13 +161,13 @@
|
||||
int $chapter,
|
||||
int $verse,
|
||||
string $tag
|
||||
): ?array
|
||||
): ?object
|
||||
{
|
||||
// get tag if it exist
|
||||
if (($_tag = $this->load->item([
|
||||
'linker' => $linker,
|
||||
'translation' => $translation,
|
||||
'book' => $book,
|
||||
'book_nr' => $book,
|
||||
'chapter' => $chapter,
|
||||
'verse' => $verse,
|
||||
'tag' => $tag
|
||||
@ -213,7 +213,7 @@
|
||||
'access' => 0,
|
||||
'linker' => $linker,
|
||||
'translation' => $translation,
|
||||
'book' => $book,
|
||||
'book_nr' => $book,
|
||||
'chapter' => $chapter,
|
||||
'verse' => $verse,
|
||||
'guid' => $guid
|
||||
|
@ -176,7 +176,7 @@ final class Note
|
||||
* @param int $chapter The chapter in which the note is made
|
||||
* @param int $verse The verse where the note is made
|
||||
*
|
||||
* @return object|null Array of the note values on success
|
||||
* @return object|null Object of the note values on success
|
||||
* @since 2.0.1
|
||||
**/
|
||||
private function get(
|
||||
|
@ -147,7 +147,7 @@
|
||||
* @param int $chapter The chapter in which the note is made
|
||||
* @param int $verse The verse where the note is made
|
||||
*
|
||||
* @return object|null Array of the note values on success
|
||||
* @return object|null Object of the note values on success
|
||||
* @since 2.0.1
|
||||
**/
|
||||
private function get(
|
||||
|
Loading…
x
Reference in New Issue
Block a user