Skip to content

Commit 98d1062

Browse files
committed
cleaning
1 parent 1a4cdd1 commit 98d1062

File tree

9 files changed

+22
-12
lines changed

9 files changed

+22
-12
lines changed

docs/1.x/contributing.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Contributing
2-
This project exists thanks to all the people who contribute. [CONTRIBUTING](https://github.com/milwad-dev/laravel-validate/graphs/contributors)
2+
3+
This project exists thanks to all the people who
4+
contribute. [CONTRIBUTING](https://github.com/milwad-dev/laravel-validate/graphs/contributors)
35

46
<a href="https://github.com/milwad-dev/laravel-validate/graphs/contributors"><img src="https://opencollective.com/laravel-validate/contributors.svg?width=890&button=false" /></a>

docs/1.x/introduction.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
Laravel validate is a package for validation faster & easier. <br>
1414
You can validate data easier, Laravel validate have lots of rule class for validation. <br>
1515
This package support localization and you can use it for most of the language. <br>
16-
(If some language didn't support, you can <a href="https://github.com/milwad-dev/laravel-validate/pulls">PR</a> for new language)
16+
(If some language didn't support, you can <a href="https://github.com/milwad-dev/laravel-validate/pulls">PR</a> for new
17+
language)

docs/1.x/support-languages.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<a name="support-languages"></a>
2+
23
# Support Languages
34

4-
If a language is not supported, you can make <a href="https://github.com/milwad-dev/laravel-validate/issues/new/choose">issue</a> to add it. <br>
5+
If a language is not supported, you can make <a href="https://github.com/milwad-dev/laravel-validate/issues/new/choose">
6+
issue</a> to add it. <br>
57
Also, you can make <a href="https://github.com/milwad-dev/laravel-validate/pulls">PR</a> to add it.
68

79
- ✅ Arabic (ar)

docs/1.x/valid-bitcoin-address.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ValidBitcoinAddress
22

3-
If you want to validate your Bitcoin address you can use the `ValidBitcoinAddress` rule:
3+
If you want to validate your Bitcoin address you can use the `ValidBitcoinAddress` rule:
44

55
```php
66
use Milwad\LaravelValidate\Rules\ValidBitcoinAddress;

docs/1.x/valid-discord-username.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ValidDiscordUsername
22

3-
If you want to validate the discord username, you can use the `ValidDiscordUsername` rule:
3+
If you want to validate the discord username, you can use the `ValidDiscordUsername` rule:
44

55
```php
66
use Milwad\LaravelValidate\Rules\ValidDiscordUsername;

docs/1.x/valid-iban.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ return [
1010
];
1111
```
1212

13-
Also, You can use the `Country` class and add a list of countries to the `ValidIban` rule. By doing this your IBAN must belong
13+
Also, You can use the `Country` class and add a list of countries to the `ValidIban` rule. By doing this your IBAN must
14+
belong
1415
to one of the countries you pass to the validation class:
1516

1617
```php

docs/1.x/valid-pattern.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## ValidPattern
22

3-
Sometimes you need to validate text with a pattern, For example, you want to validate a text like (4444-4444-4444). If you want to check the length of the text is separate after `-` is 4, You can use this Rule:
3+
Sometimes you need to validate text with a pattern, For example, you want to validate a text like (4444-4444-4444). If
4+
you want to check the length of the text is separate after `-` is 4, You can use this Rule:
45

56
```php
67
use Milwad\LaravelValidate\Rules\ValidPattern;

docs/1.x/valid-phone-number.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,20 @@ return [
2222
```
2323

2424
> **Note**
25-
> If you want to know which country's codes are supported by the `ValidPhoneNumbers` Rule, you can search your country on this [Countries Phone Number](#support-countries) list.
25+
> If you want to know which country's codes are supported by the `ValidPhoneNumbers` Rule, you can search your country
26+
> on this [Countries Phone Number](#support-countries) list.
2627
2728
<a name="support-countries"></a>
29+
2830
## Support Countries Phone Number
2931

3032
✅ IRAN <br>
3133
✅ ENGLAND <br>
3234
✅ NIGER <br>
3335
✅ SAUDI_ARABIA <br>
34-
✅ GERMANY <br>
35-
✅ GREECE <br>
36-
✅ SPAIN <br>
36+
✅ GERMANY <br>
37+
✅ GREECE <br>
38+
✅ SPAIN <br>
3739
✅ FRANCE <br>
3840
✅ INDIA <br>
3941
✅ INDONESIA <br>

docs/1.x/valid-strong-password.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## ValidStrongPassword
22

3-
If you are using the `ValidStrongPassword` rule, the password must contain a capital word, a small letter, numbers, and a special character like (!@#$%^&*):
3+
If you are using the `ValidStrongPassword` rule, the password must contain a capital word, a small letter, numbers, and
4+
a special character like (!@#$%^&*):
45

56
```php
67
use Milwad\LaravelValidate\Rules\ValidStrongPassword;

0 commit comments

Comments
 (0)