Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b35015a1a | |||
| 8389137f7c |
@@ -228,11 +228,11 @@ final class account extends core implements record_interface
|
||||
$$settings->write(account: $$record->identifier);
|
||||
|
||||
// Writing the record into the database
|
||||
$$record = $$this->database->read(
|
||||
/* $$record = $$this->database->read(
|
||||
filter: fn(record $$_record) => $$_record->identifier === $$record->identifier,
|
||||
update: fn(record &$$_record) => $$_record = $$record,
|
||||
amount: 1
|
||||
)[0] ?? null;
|
||||
)[0] ?? null; */
|
||||
|
||||
// Exit (success)
|
||||
return $$record;
|
||||
|
||||
@@ -92,7 +92,7 @@ final class authorizations extends core implements record_interface
|
||||
* @param bool $$system_settings
|
||||
* @param bool $$active Is the record active?
|
||||
*
|
||||
* @return int|false The record identifier, if created
|
||||
* @return record|false The record identifier, if created
|
||||
*/
|
||||
public function write(
|
||||
int $$account,
|
||||
@@ -100,7 +100,7 @@ final class authorizations extends core implements record_interface
|
||||
bool $$settings = true,
|
||||
bool $$system_settings = false,
|
||||
bool $$active = true,
|
||||
): int|false
|
||||
): record|false
|
||||
{
|
||||
$$record = $$this->database->record(
|
||||
$$this->database->count() + 1,
|
||||
@@ -117,7 +117,7 @@ final class authorizations extends core implements record_interface
|
||||
$$created = $$this->database->write($$record);
|
||||
|
||||
// Exit (success)
|
||||
return $$created ? $$record->identifier : false;
|
||||
return $$created ? $$record : false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -83,12 +83,12 @@ final class settings extends core implements record_interface
|
||||
* @param int $$account The account identifier
|
||||
* @param int $$active Is the record active?
|
||||
*
|
||||
* @return int|false The record identifier, if created
|
||||
* @return record|false The record, if created
|
||||
*/
|
||||
public function write(
|
||||
int $$account,
|
||||
bool $$active = true,
|
||||
): int|false {
|
||||
): record|false {
|
||||
$$record = $$this->database->record(
|
||||
$$this->database->count() + 1,
|
||||
$$account,
|
||||
@@ -101,7 +101,7 @@ final class settings extends core implements record_interface
|
||||
$$created = $$this->database->write($$record);
|
||||
|
||||
// Exit (success)
|
||||
return $$created ? $$record->identifier : false;
|
||||
return $$created ? $$record : false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
},
|
||||
"require": {
|
||||
"php": "^8.5",
|
||||
"mirzaev/minimal": "^3.7",
|
||||
"mirzaev/minimal": "^3.8.7",
|
||||
"mirzaev/baza": "^3.3",
|
||||
"mirzaev/record": "^1.0",
|
||||
"mirzaev/languages": "^1.0",
|
||||
@@ -34,7 +34,8 @@
|
||||
"twig/twig": "^3.2",
|
||||
"twig/extra-bundle": "^3.7",
|
||||
"twig/intl-extra": "^3.10",
|
||||
"react/filesystem": "^0.1.2"
|
||||
"react/filesystem": "^0.1.2",
|
||||
"react/async": "^4.3"
|
||||
},
|
||||
"suggest": {
|
||||
"mirzaev/files": "Easy working with files",
|
||||
|
||||
Reference in New Issue
Block a user