This repository was archived by the owner on Aug 14, 2022. It is now read-only.
File tree 7 files changed +29
-55
lines changed
7 files changed +29
-55
lines changed Original file line number Diff line number Diff line change 1
1
/tests export-ignore
2
- /src /Exception export-ignore
3
2
.gitattributes export-ignore
4
3
.gitignore export-ignore
5
4
CHANGELOG.md export-ignore
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 1.1.2 - 2017-07-16
4
+ * Deleted ` Josantonius\File\Exception\FileException ` class.
5
+ * Deleted ` Josantonius\File\Exception\Exceptions ` abstract class.
6
+ * Deleted ` Josantonius\File\Exception\FileException->__construct() ` method.
7
+
3
8
## 1.1.1 - 2017-03-18
4
9
* Some files were excluded from download and comments and readme files were updated.
5
10
Original file line number Diff line number Diff line change @@ -14,14 +14,23 @@ Librería PHP para manejo de archivos.
14
14
- [ Métodos disponibles] ( #métodos-disponibles )
15
15
- [ Uso] ( #uso )
16
16
- [ Tests] ( #tests )
17
- - [ Manejador de excepciones] ( #manejador-de-excepciones )
18
17
- [ Contribuir] ( #contribuir )
19
18
- [ Repositorio] ( #repositorio )
20
19
- [ Licencia] ( #licencia )
21
20
- [ Copyright] ( #copyright )
22
21
23
22
---
24
23
24
+ <p align =" center " ><strong >Echa un vistazo al código</strong ></p >
25
+
26
+ <p align =" center " >
27
+ <a href =" " title =" Echa un vistazo al código " >
28
+ <img src =" https://raw.githubusercontent.com/Josantonius/PHP-Algorithm/master/resources/youtube-thumbnail.jpg " >
29
+ </a >
30
+ </p >
31
+
32
+ ---
33
+
25
34
### Instalación
26
35
27
36
La mejor forma de instalar esta extensión es a través de [ composer] ( http://getcomposer.org/download/ ) .
@@ -93,9 +102,6 @@ Métodos de prueba disponibles en esta librería:
93
102
FileTest::testSearchString();
94
103
```
95
104
96
- ### Manejador de excepciones
97
-
98
- Esta librería utiliza [ control de excepciones] ( src/Exception ) que puedes personalizar a tu gusto.
99
105
### Contribuir
100
106
1 . Comprobar si hay incidencias abiertas o abrir una nueva para iniciar una discusión en torno a un fallo o función.
101
107
1 . Bifurca la rama del repositorio en GitHub para iniciar la operación de ajuste.
Original file line number Diff line number Diff line change @@ -14,14 +14,23 @@ PHP library for file management.
14
14
- [ Available Methods] ( #available-methods )
15
15
- [ Usage] ( #usage )
16
16
- [ Tests] ( #tests )
17
- - [ Exception Handler] ( #exception-handler )
18
17
- [ Contribute] ( #contribute )
19
18
- [ Repository] ( #repository )
20
- - [ Licensing ] ( #licensing )
19
+ - [ License ] ( #license )
21
20
- [ Copyright] ( #copyright )
22
21
23
22
---
24
23
24
+ <p align =" center " ><strong >Take a look at the code</strong ></p >
25
+
26
+ <p align =" center " >
27
+ <a href =" " title =" Take a look at the code " >
28
+ <img src =" https://raw.githubusercontent.com/Josantonius/PHP-Algorithm/master/resources/youtube-thumbnail.jpg " >
29
+ </a >
30
+ </p >
31
+
32
+ ---
33
+
25
34
### Installation
26
35
27
36
The preferred way to install this extension is through [ composer] ( http://getcomposer.org/download/ ) .
@@ -94,9 +103,6 @@ Available test methods in this library:
94
103
FileTest::testSearchString();
95
104
```
96
105
97
- ### Exception Handler
98
-
99
- This library uses [ exception handler] ( src/Exception ) that you can customize.
100
106
### Contribute
101
107
1 . Check for open issues or open a new issue to start a discussion around a bug or feature.
102
108
1 . Fork the repository on GitHub to start making your changes.
@@ -110,7 +116,7 @@ This is intended for large and long-lived objects.
110
116
111
117
All files in this repository were created and uploaded automatically with [ Reposgit Creator] ( https://github.com/Josantonius/BASH-Reposgit ) .
112
118
113
- ### Licensing
119
+ ### License
114
120
115
121
This project is licensed under ** MIT license** . See the [ LICENSE] ( LICENSE ) file for more info.
116
122
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " josantonius/file" ,
3
- "version" : " 1.1.1 " ,
3
+ "version" : " 1.1.2 " ,
4
4
"type" : " library" ,
5
5
"description" : " PHP library for file management." ,
6
6
"keywords" : [
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
11
12
12
namespace Josantonius \File ;
13
13
14
- # use Josantonius\File\Exception\FileException;
15
-
16
14
/**
17
15
* File handler.
18
16
*
@@ -32,7 +30,7 @@ class File {
32
30
*/
33
31
public static function searchString ($ search , $ pathfile ) {
34
32
35
- $ file = fopen ($ pathfile , " r+ " );
33
+ $ file = fopen ($ pathfile , ' r+ ' );
36
34
37
35
while (!feof ($ file )) {
38
36
You can’t perform that action at this time.
0 commit comments