Skip to content

Commit c45f109

Browse files
committed
Updated to 1.1.6 version
1 parent 0144306 commit c45f109

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README-ES.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ Biblioteca PHP para manejar excepciones y errores.
2525

2626
### Requisitos
2727

28-
Esta clase es soportada por versiones de `PHP 5.6` o superiores y es compatible con versiones de `HHVM 3.0` o superiores.
28+
Esta clase es soportada por versiones de **PHP 5.6** o superiores y es compatible con versiones de **HHVM 3.0** o superiores.
2929

3030
### Instalación
3131

3232
La mejor forma de instalar esta extensión es a través de [Composer](http://getcomposer.org/download/).
3333

34-
Para instalar `PHP ErrorHandler library`, simplemente escribe:
34+
Para instalar **PHP ErrorHandler library**, simplemente escribe:
3535

3636
$ composer require Josantonius/ErrorHandler
3737

@@ -53,7 +53,7 @@ O **instalarlo manualmente**:
5353

5454
Métodos disponibles en esta biblioteca:
5555

56-
`Set customs methods to renderizate:`
56+
### - Set customs methods to renderizate:
5757

5858
```php
5959
ErrorHandler::setCustomMethod($class, $method, $repeat, $default);
@@ -70,15 +70,15 @@ ErrorHandler::setCustomMethod($class, $method, $repeat, $default);
7070

7171
### Cómo empezar
7272

73-
Para utilizar esta biblioteca, simplemente:
73+
Para utilizar esta clase con **Composer**:
7474

7575
```php
7676
require __DIR__ . '/vendor/autoload.php';
7777

7878
use Josantonius\ErrorHandler\ErrorHandler;
7979
```
8080

81-
Si la instalaste `manualmente`, utiliza:
81+
Si la instalaste **manualmente**, utiliza:
8282

8383
```php
8484
require_once __DIR__ . '/ErrorHandler.php';

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ PHP library for handling exceptions and errors.
2323

2424
---
2525

26-
### Requirements
26+
## Requirements
2727

28-
This library is supported by `PHP versions 5.6` or higher and is compatible with `HHVM versions 3.0` or higher.
28+
This library is supported by **PHP versions 5.6** or higher and is compatible with **HHVM versions 3.0** or higher.
2929

30-
### Installation
30+
## Installation
3131

3232
The preferred way to install this extension is through [Composer](http://getcomposer.org/download/).
3333

34-
To install `PHP ErrorHandler library`, simply:
34+
To install **PHP ErrorHandler library**, simply:
3535

3636
$ composer require Josantonius/ErrorHandler
3737

@@ -49,11 +49,11 @@ Or **install it manually**:
4949

5050
$ wget https://raw.githubusercontent.com/Josantonius/PHP-ErrorHandler/master/src/ErrorHandler.php
5151

52-
### Available Methods
52+
## Available Methods
5353

5454
Available methods in this library:
5555

56-
`Set customs methods to renderizate:`
56+
### - Set customs methods to renderizate:
5757

5858
```php
5959
ErrorHandler::setCustomMethod($class, $method, $repeat, $default);
@@ -68,25 +68,25 @@ ErrorHandler::setCustomMethod($class, $method, $repeat, $default);
6868

6969
**# Return** (void)
7070

71-
### Quick Start
71+
## Quick Start
7272

73-
To use this class with `Composer`:
73+
To use this class with **Composer**:
7474

7575
```php
7676
require __DIR__ . '/vendor/autoload.php';
7777

7878
use Josantonius\ErrorHandler\ErrorHandler;
7979
```
8080

81-
Or If you installed it `manually`, use it:
81+
Or If you installed it **manually**, use it:
8282

8383
```php
8484
require_once __DIR__ . '/ErrorHandler.php';
8585

8686
use Josantonius\ErrorHandler\ErrorHandler;
8787
```
8888

89-
### Usage
89+
## Usage
9090

9191
Example of use for this library:
9292

@@ -121,7 +121,7 @@ $default = true;
121121
ErrorHandler::SetCustomMethod($class, $method, $times, $default);
122122
```
123123

124-
### Tests
124+
## Tests
125125

126126
To run [tests](tests) you just need [Composer](http://getcomposer.org/download/) and to execute the following:
127127

@@ -143,19 +143,19 @@ Run all previous tests:
143143

144144
$ composer tests
145145

146-
### Images
146+
## Images
147147

148148
![image](resources/images/exception.png)
149149
![image](resources/images/error.png)
150150
![image](resources/images/notice.png)
151151
![image](resources/images/warning.png)
152152

153-
### ☑ TODO
153+
## ☑ TODO
154154

155155
- [x] Create tests
156156
- [x] Improve documentation
157157

158-
### Contribute
158+
## Contribute
159159

160160
1. Check for open issues or open a new issue to start a discussion around a bug or feature.
161161
1. Fork the repository on GitHub to start making your changes.
@@ -165,15 +165,15 @@ Run all previous tests:
165165

166166
This is intended for large and long-lived objects.
167167

168-
### Repository
168+
## Repository
169169

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

172-
### License
172+
## License
173173

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

176-
### Copyright
176+
## Copyright
177177

178178
2016 - 2017 Josantonius, [josantonius.com](https://josantonius.com/)
179179

0 commit comments

Comments
 (0)