This commit is contained in:
Little Fluffy Clouds 2025-07-12 17:52:37 +03:00
parent 1bf803bb91
commit 76f9548977

View File

@ -27,7 +27,7 @@ use LogicException as exception_logic,
* @var architecture $architecture PHP implementation architecture * @var architecture $architecture PHP implementation architecture
* *
* @method void __construct() Constructor, initializes $architecture * @method void __construct() Constructor, initializes $architecture
@method void setArchitecture() Sets $architecture static property to PHP distribution architecture * @method void setArchitecture() Sets $architecture static property to PHP distribution architecture
* @method self encoding(encoding $encoding) Write encoding into the database instance property (fluent interface) * @method self encoding(encoding $encoding) Write encoding into the database instance property (fluent interface)
* @method self columns(column ...$columns) Write columns into the database instance property (fluent interface) * @method self columns(column ...$columns) Write columns into the database instance property (fluent interface)
* @method self connect(string $database) Initialize the database files (fluent interface) * @method self connect(string $database) Initialize the database files (fluent interface)
@ -215,7 +215,7 @@ class database
* *
* @param mixed[] $values Values of the record * @param mixed[] $values Values of the record
* *
* @throws exception_invalid_argument if the balue type not matches the column values types * @throws exception_invalid_argument if the value type not matches the column values types
* @throws exception_logic if amount of columns not matches the amount of values * @throws exception_logic if amount of columns not matches the amount of values
* *
* @return record|null The record instance * @return record|null The record instance