docs
docs copied to clipboard
Phalcon Framework documentation
I spent at least 20 minutes trying to understand the methods described in [the Models page](https://docs.phalcon.io/4.0/en/db-models#methods) before finally finding a "Creating Models" section, 30 screens down. The frustration from that...
maybe it would be nice to tell on the Devilbox Environment Page that Phalcon and PSR are not enabled by default and has to be enabled in .env file at...
[The page documenting `Phalcon\Http` for Phalcon 4.0](https://docs.phalcon.io/4.0/fr-fr/api/phalcon_http#http-cookie) contains one table at the start of each class/interface. The vast majority of these, such as the first one, are broken (whether in...
https://docs.phalcon.io/4.0/en/db-odm We are providing support of Mongo, since v4, via composer package - https://github.com/phalcon/incubator-mongodb
[The documentation of `Phalcon\Mvc\Model\Resultset`](https://docs.phalcon.io/4.0/fr-fr/api/phalcon_mvc#mvc-model-resultset) pretty much says that serialize() returns "a big array": > Serializing a resultset will dump all related rows into a big array As one may guess,...
[The documentation of the `Phalcon\Mvc\Model\Query\Builder` class's `columns()` method](https://docs.phalcon.io/4.0/fr-fr/api/phalcon_mvc#m%C3%A9thodes-34) is minimal: > Sets the columns to be queried As suggested by https://docs.phalcon.io/4.0/fr-fr/db-phql, more precisely: > columns - array | string -...
[The _Methods_ section of Phalcon\Config's documentation](https://docs.phalcon.io/4.0/en/api/phalcon_config#methods) describes path(): > `public function path( string $path, mixed $defaultValue = null, mixed $delimiter = null ): mixed | null;` > > Returns a...
**Describe the bug** Removed method `Phalcon\Model\Manager::registerNamespaceAlias()` is used in [PHQL documentation](https://docs.phalcon.io/4.0/en/db-phql#:~:text=Copy-,Aliases%20in%20Namespaces,-You%20can%20define). **Expected behavior** Documentation should be updated.
With ``` Phalcon\Mvc\View ``` `echo` will produce this error: `Object of class Phalcon\Mvc\View could not be converted to string` Only ```php use Phalcon\Mvc\View\Simple ``` can be used combined with `echo`....