You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Once installed with `composer`, the global functions are accessable from **every
12
12
dump( 'any content' );
13
13
```
14
14
15
-
If a function with the same name already exists in the list of your project's defined functions ( built-in and user-defined ), it will simply not be registered in your environment. Therefore, no conflicts will appear.
15
+
If a function with the same name already exists in the list of your project's defined functions ( built-in and user-defined ), it will simply not be registered in your environment. Therefore, **no conflicts** will ever appear.
16
16
17
17
Nevertheless, every function is still accessable it in a static way with the appropriate use-statement:
18
18
@@ -24,9 +24,13 @@ use CNZ\Helpers\Util as util;
24
24
25
25
util::dump( 'any content' );
26
26
```
27
+
28
+
#### Unit Tests
29
+
30
+
With every commit to the repository, every function is automatically tested against a number of unit-tests and PHP Versions.
27
31
# Install
28
32
29
-
To install the latest clausnz/php-helper library, simply add the following lines to your composer.json and run a `composer update`:
33
+
To install the latest clausnz/php-helper library, simply add the following lines to your `composer.json` and run a `composer update`:
30
34
31
35
#### Example
32
36
```json
@@ -50,7 +54,7 @@ Also make sure to require your composer autoload file:
50
54
require __DIR__ . '/vendor/autoload.php';
51
55
```
52
56
53
-
Now the new global PHP functions are immediately available everywhere in your code. To also access the static functions in the helper classes, add an approbiate use statement to your file:
57
+
After installation, the new global PHP functions are immediately available everywhere in your code. To also access the ( almost identical ) static functions in the helper classes, add an approbiate use statement to your file:
Copy file name to clipboardExpand all lines: doc/About.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Once installed with `composer`, the global functions are accessable from **every
12
12
dump( 'any content' );
13
13
```
14
14
15
-
If a function with the same name already exists in the list of your project's defined functions ( built-in and user-defined ), it will simply not be registered in your environment. Therefore, no conflicts will appear.
15
+
If a function with the same name already exists in the list of your project's defined functions ( built-in and user-defined ), it will simply not be registered in your environment. Therefore, **no conflicts** will ever appear.
16
16
17
17
Nevertheless, every function is still accessable it in a static way with the appropriate use-statement:
18
18
@@ -24,3 +24,7 @@ use CNZ\Helpers\Util as util;
24
24
25
25
util::dump( 'any content' );
26
26
```
27
+
28
+
#### Unit Tests
29
+
30
+
With every commit to the repository, every function is automatically tested against a number of unit-tests and PHP Versions.
Copy file name to clipboardExpand all lines: doc/Install.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Install
2
2
3
-
To install the latest clausnz/php-helper library, simply add the following lines to your composer.json and run a `composer update`:
3
+
To install the latest clausnz/php-helper library, simply add the following lines to your `composer.json` and run a `composer update`:
4
4
5
5
#### Example
6
6
```json
@@ -24,7 +24,7 @@ Also make sure to require your composer autoload file:
24
24
require __DIR__ . '/vendor/autoload.php';
25
25
```
26
26
27
-
Now the new global PHP functions are immediately available everywhere in your code. To also access the static functions in the helper classes, add an approbiate use statement to your file:
27
+
After installation, the new global PHP functions are immediately available everywhere in your code. To also access the ( almost identical ) static functions in the helper classes, add an approbiate use statement to your file:
Copy file name to clipboardExpand all lines: doc/template/About.tmpl.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Once installed with `composer`, the global functions are accessable from **every
12
12
dump( 'any content' );
13
13
```
14
14
15
-
If a function with the same name already exists in the list of your project's defined functions ( built-in and user-defined ), it will simply not be registered in your environment. Therefore, no conflicts will appear.
15
+
If a function with the same name already exists in the list of your project's defined functions ( built-in and user-defined ), it will simply not be registered in your environment. Therefore, **no conflicts** will ever appear.
16
16
17
17
Nevertheless, every function is still accessable it in a static way with the appropriate use-statement:
18
18
@@ -24,3 +24,7 @@ use CNZ\Helpers\Util as util;
24
24
25
25
util::dump( 'any content' );
26
26
```
27
+
28
+
#### Unit Tests
29
+
30
+
With every commit to the repository, every function is automatically tested against a number of unit-tests and PHP Versions.
0 commit comments