Skip to content

Commit d92f15c

Browse files
committed
Images were added and comments were edited
Signed-off-by: Josantonius <info@josantonius.com>
1 parent 3040e6b commit d92f15c

12 files changed

+37
-23
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ docs/*.pyc
1010
.git*/
1111
.idea
1212
.DS_STORE
13+
resources/

README-ES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Librería PHP para manejar excepciones y errores.
1212
- [Requisitos](#requisitos)
1313
- [Cómo empezar y ejemplos](#cómo-empezar-y-ejemplos)
1414
- [Métodos disponibles](#métodos-disponibles)
15+
- [Imágenes](#imagenes)
1516
- [Uso](#uso)
1617
- [Tests](#tests)
1718
- [Manejador de excepciones](#manejador-de-excepciones)
@@ -55,6 +56,21 @@ ErrorHandler->exception();
5556
ErrorHandler->prepareException();
5657
ErrorHandler->getErrorType();
5758
ErrorHandler->show();
59+
60+
### Imágenes
61+
img[src$="centerme"] {
62+
display:block;
63+
margin: 0 auto;
64+
}
65+
Vista desde PHP
66+
![image](resources/images/example-error-handler-php-library.png.png?style=centerme)
67+
![image](resources/images/example-exception-handler-php-library.png?style=centerme)
68+
69+
Vista desde HHVM
70+
![image](resources/images/example-error-handler-hhvm-php-library.png?style=centerme)
71+
![image](resources/images/example-error-handler-hhvm-php-library.png?style=centerme).png?style=centerme)
72+
73+
5874
```
5975
### Uso
6076

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ PHP library for handling exceptions and errors.
1212
- [Requirements](#requirements)
1313
- [Quick Start and Examples](#quick-start-and-examples)
1414
- [Available Methods](#available-methods)
15+
- [Images](#images)
1516
- [Usage](#usage)
1617
- [Tests](#tests)
1718
- [Exception Handler](#exception-handler)
@@ -56,6 +57,20 @@ ErrorHandler->prepareException();
5657
ErrorHandler->getErrorType();
5758
ErrorHandler->show();
5859
```
60+
61+
### Images
62+
img[src$="centerme"] {
63+
display:block;
64+
margin: 0 auto;
65+
}
66+
View from PHP
67+
![image](resources/images/example-error-handler-php-library.png.png?style=centerme)
68+
![image](resources/images/example-exception-handler-php-library.png?style=centerme)
69+
70+
View from HHVM
71+
![image](resources/images/example-error-handler-hhvm-php-library.png?style=centerme)
72+
![image](resources/images/example-error-handler-hhvm-php-library.png?style=centerme).png?style=centerme)
73+
5974
### Usage
6075

6176
Example of use for this library:
-124 KB
Binary file not shown.
-102 KB
Binary file not shown.
-42.1 KB
Binary file not shown.
-41.8 KB
Binary file not shown.

src/ErrorHandler.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22
/**
33
* PHP library for handling exceptions and errors.
44
*
5-
* @category JST
6-
* @package ErrorHandler
7-
* @subpackage ErrorHandler
85
* @author Josantonius - info@josantonius.com
96
* @copyright Copyright (c) 2016 JST PHP Framework
107
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
11-
* @version 1.1.0
128
* @link https://github.com/Josantonius/PHP-ErrorHandler
13-
* @since File available since 1.0.0 - Update: 2017-01-30
9+
* @since File available since 1.0.0 - Update: 2017-02-14
1410
*/
1511

1612
namespace Josantonius\ErrorHandler;

src/Exception/ErrorHandlerException.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22
/**
33
* PHP library for handling exceptions and errors.
44
*
5-
* @category JST
6-
* @package ErrorHandler
7-
* @subpackage ErrorHandlerException
85
* @author Josantonius - info@josantonius.com
96
* @copyright Copyright (c) 2016 JST PHP Framework
107
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
11-
* @version 1.0.0
128
* @link https://github.com/Josantonius/PHP-ErrorHandler
13-
* @since File available since 1.0.0 - Update: 2016-12-14
9+
* @since File available since 1.0.0 - Update: 2017-02-14
1410
*/
1511

1612
namespace Josantonius\ErrorHandler\Exception;

src/resources/styles.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
/**
33
* PHP library for handling exceptions and errors.
44
*
5-
* @category JST
6-
* @package ErrorHandler
75
* @author Josantonius - info@josantonius.com
86
* @copyright Copyright (c) 2016 JST PHP Framework
97
* @license https://opensource.org/licenses/MIT - The MIT License (MIT)
10-
* @version 1.1.0
118
* @link https://github.com/Josantonius/ErrorHandler
12-
* @since File available since 1.0.0 - Update: 2017-01-30
9+
* @since File available since 1.0.0 - Update: 2017-02-14
1310
*/
1411
?>
1512
<style type="text/css">

0 commit comments

Comments
 (0)