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, ...)
|
+ __construct(Load $load, Insert $insert, ...)
|
||||||
+ set(string $translation, int $book, ...) : ?array
|
+ set(string $translation, int $book, ...) : ?array
|
||||||
+ delete(string $tag) : bool
|
+ delete(string $tag) : bool
|
||||||
- get(string $linker, string $translation, ...) : ?array
|
- get(string $linker, string $translation, ...) : ?object
|
||||||
- create(string $linker, string $translation, ...) : bool
|
- create(string $linker, string $translation, ...) : bool
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ note right of Tagged::get
|
|||||||
Get a tagged verse
|
Get a tagged verse
|
||||||
|
|
||||||
since: 2.0.1
|
since: 2.0.1
|
||||||
return: ?array
|
return: ?object
|
||||||
|
|
||||||
arguments:
|
arguments:
|
||||||
string $linker
|
string $linker
|
||||||
|
@ -180,7 +180,7 @@ final class Tagged
|
|||||||
* @param int $verse The verse where the note is made
|
* @param int $verse The verse where the note is made
|
||||||
* @param string $tag The tag being added
|
* @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
|
* @since 2.0.1
|
||||||
**/
|
**/
|
||||||
private function get(
|
private function get(
|
||||||
@ -190,13 +190,13 @@ final class Tagged
|
|||||||
int $chapter,
|
int $chapter,
|
||||||
int $verse,
|
int $verse,
|
||||||
string $tag
|
string $tag
|
||||||
): ?array
|
): ?object
|
||||||
{
|
{
|
||||||
// get tag if it exist
|
// get tag if it exist
|
||||||
if (($_tag = $this->load->item([
|
if (($_tag = $this->load->item([
|
||||||
'linker' => $linker,
|
'linker' => $linker,
|
||||||
'translation' => $translation,
|
'translation' => $translation,
|
||||||
'book' => $book,
|
'book_nr' => $book,
|
||||||
'chapter' => $chapter,
|
'chapter' => $chapter,
|
||||||
'verse' => $verse,
|
'verse' => $verse,
|
||||||
'tag' => $tag
|
'tag' => $tag
|
||||||
@ -242,7 +242,7 @@ final class Tagged
|
|||||||
'access' => 0,
|
'access' => 0,
|
||||||
'linker' => $linker,
|
'linker' => $linker,
|
||||||
'translation' => $translation,
|
'translation' => $translation,
|
||||||
'book' => $book,
|
'book_nr' => $book,
|
||||||
'chapter' => $chapter,
|
'chapter' => $chapter,
|
||||||
'verse' => $verse,
|
'verse' => $verse,
|
||||||
'guid' => $guid
|
'guid' => $guid
|
||||||
|
@ -151,7 +151,7 @@
|
|||||||
* @param int $verse The verse where the note is made
|
* @param int $verse The verse where the note is made
|
||||||
* @param string $tag The tag being added
|
* @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
|
* @since 2.0.1
|
||||||
**/
|
**/
|
||||||
private function get(
|
private function get(
|
||||||
@ -161,13 +161,13 @@
|
|||||||
int $chapter,
|
int $chapter,
|
||||||
int $verse,
|
int $verse,
|
||||||
string $tag
|
string $tag
|
||||||
): ?array
|
): ?object
|
||||||
{
|
{
|
||||||
// get tag if it exist
|
// get tag if it exist
|
||||||
if (($_tag = $this->load->item([
|
if (($_tag = $this->load->item([
|
||||||
'linker' => $linker,
|
'linker' => $linker,
|
||||||
'translation' => $translation,
|
'translation' => $translation,
|
||||||
'book' => $book,
|
'book_nr' => $book,
|
||||||
'chapter' => $chapter,
|
'chapter' => $chapter,
|
||||||
'verse' => $verse,
|
'verse' => $verse,
|
||||||
'tag' => $tag
|
'tag' => $tag
|
||||||
@ -213,7 +213,7 @@
|
|||||||
'access' => 0,
|
'access' => 0,
|
||||||
'linker' => $linker,
|
'linker' => $linker,
|
||||||
'translation' => $translation,
|
'translation' => $translation,
|
||||||
'book' => $book,
|
'book_nr' => $book,
|
||||||
'chapter' => $chapter,
|
'chapter' => $chapter,
|
||||||
'verse' => $verse,
|
'verse' => $verse,
|
||||||
'guid' => $guid
|
'guid' => $guid
|
||||||
|
@ -176,7 +176,7 @@ final class Note
|
|||||||
* @param int $chapter The chapter in which the note is made
|
* @param int $chapter The chapter in which the note is made
|
||||||
* @param int $verse The verse where 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
|
* @since 2.0.1
|
||||||
**/
|
**/
|
||||||
private function get(
|
private function get(
|
||||||
|
@ -147,7 +147,7 @@
|
|||||||
* @param int $chapter The chapter in which the note is made
|
* @param int $chapter The chapter in which the note is made
|
||||||
* @param int $verse The verse where 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
|
* @since 2.0.1
|
||||||
**/
|
**/
|
||||||
private function get(
|
private function get(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user