Skip to content

Commit 004bba5

Browse files
committed
updating docs for 5.12
1 parent 7b093c4 commit 004bba5

22 files changed

Lines changed: 1702 additions & 181 deletions

.github/workflows/deploy-documents.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Workflow inspiration and adaptation came from Andruino-Cli
22
# https://github.com/arduino/arduino-cli/blob/master/.github/workflows/deploy-cobra-mkdocs-versioned-poetry.yml
33

4-
name: Deploy Documents 5.11
4+
name: Deploy Documents 5.12
55

66
env:
77
PYTHON_VERSION: "3.9"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.11|
1+
5.12|latest

docs/api/phalcon_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ $this->registerModules(
116116
```php
117117
public function setDefaultModule( string $defaultModule ): AbstractApplication;
118118
```
119-
Sets the module name to be used if the router doesn't return a valid module
119+
Sets the module name to be used if the router does not return a valid module
120120

121121

122122
```php

docs/api/phalcon_db.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ hide:
3131
- `Phalcon\Db\ReferenceInterface`
3232
- `Phalcon\Events\EventsAwareInterface`
3333
- `Phalcon\Events\ManagerInterface`
34+
- `Phalcon\Support\Settings`
3435

3536
- __Extends__
3637

@@ -950,7 +951,7 @@ Escapes a value to avoid SQL injections
950951
public function execute( string $sqlStatement, array $bindParams = [], array $bindTypes = [] ): bool;
951952
```
952953
Sends SQL statements to the database server returning the success state.
953-
Use this method only when the SQL statement sent to the server doesn't
954+
Use this method only when the SQL statement sent to the server does not
954955
return any rows
955956

956957

@@ -1438,7 +1439,7 @@ $escapedStr = $connection->escapeString("some dangerous value");
14381439
public function execute( string $sqlStatement, array $bindParams = [], array $bindTypes = [] ): bool;
14391440
```
14401441
Sends SQL statements to the database server returning the success state.
1441-
Use this method only when the SQL statement sent to the server doesn't
1442+
Use this method only when the SQL statement sent to the server does not
14421443
return any rows
14431444

14441445
```php
@@ -4612,9 +4613,9 @@ protected $pdoStatement;
46124613
protected $result;
46134614

46144615
/**
4615-
* @var bool
4616+
* @var int|null
46164617
*/
4617-
protected $rowCount = false;
4618+
protected $rowCount;
46184619

46194620
/**
46204621
* @var string|null

0 commit comments

Comments
 (0)