Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit 92677e0

Browse files
committed
Updated to 1.1.5 version
1 parent 7bc5935 commit 92677e0

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

README-ES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,16 @@ Biblioteca para la administración de bases de datos SQL para ser utilizada por
3030

3131
---
3232

33+
<p align="center"><strong>Echa un vistazo al código</strong></p>
34+
35+
<p align="center">
36+
<a href="" title="Echa un vistazo al código">
37+
<img src="https://raw.githubusercontent.com/Josantonius/PHP-Algorithm/master/resources/youtube-thumbnail.jpg">
38+
</a>
39+
</p>
40+
41+
---
42+
3343
### Instalación
3444

3545
La mejor forma de instalar esta extensión es a través de [composer](http://getcomposer.org/download/).
@@ -48,7 +58,7 @@ También puedes clonar el repositorio completo con Git:
4858

4959
### Requisitos
5060

51-
Esta ĺibrería es soportada por versiones de PHP 5.6 o superiores y es compatible con versiones de HHVM 3.0 o superiores.
61+
Esta biblioteca es soportada por versiones de PHP 5.6 o superiores y es compatible con versiones de HHVM 3.0 o superiores.
5262

5363
### Cómo empezar y ejemplos
5464

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,21 @@ Library for SQL database management to be used by several providers at the same
2525
- [Exception Handler](#exception-handler)
2626
- [Contribute](#contribute)
2727
- [Repository](#repository)
28-
- [Licensing](#licensing)
28+
- [License](#license)
2929
- [Copyright](#copyright)
3030

3131
---
3232

33+
<p align="center"><strong>Take a look at the code</strong></p>
34+
35+
<p align="center">
36+
<a href="" title="Take a look at the code">
37+
<img src="https://raw.githubusercontent.com/Josantonius/PHP-Algorithm/master/resources/youtube-thumbnail.jpg">
38+
</a>
39+
</p>
40+
41+
---
42+
3343
### Installation
3444

3545
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
@@ -485,7 +495,7 @@ This is intended for large and long-lived objects.
485495

486496
All files in this repository were created and uploaded automatically with [Reposgit Creator](https://github.com/Josantonius/BASH-Reposgit).
487497

488-
### Licensing
498+
### License
489499

490500
This project is licensed under **MIT license**. See the [LICENSE](LICENSE) file for more info.
491501

src/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public static function getConnection($id, $provider = null, $host = null, $user
316316
*/
317317
public function query($query, $statements = null, $result = 'obj') {
318318

319-
$this->_type = explode(" ", $query)[0];
319+
$this->_type = explode(' ', $query)[0];
320320

321321
$this->_query = $query;
322322
$this->_result = $result;

0 commit comments

Comments
 (0)