upd: notice.api:3.0 (updated links @5 (to test))

This commit is contained in:
xdrm-brackets 2017-12-13 00:05:16 +01:00
parent 14df635b2f
commit 91c22cbceb
1 changed files with 3 additions and 7 deletions

View File

@ -48,13 +48,8 @@ Plan
[**V.** Type Checker](#v-type-checker) [**V.** Type Checker](#v-type-checker)
- [**1** Permissions : AuthSystem](#1---permissions--authsystem) - [**1** Default Types](#1---default-types)
- [**2** Core implementation](#2---core-implementation) - [**2** Complex Types](#1---complex-types)
- [Classes](#classes)
- [Methods](#methods)
- [Method arguments](#method-arguments)
- [Return statement](#return-statement)
- [Example](#example)
# **I.** Overview # **I.** Overview
@ -411,4 +406,5 @@ To add a new type, just open the file `/build/api/Checker.php` and add an entry
|`array<a>`|`a`|Array containing only entries matching the type `a`| |`array<a>`|`a`|Array containing only entries matching the type `a`|
> **Note:** It is possible to chain `array` type as many as needed. > **Note:** It is possible to chain `array` type as many as needed.
**Ex.:** `array<array<id>>` - Will only match an array containing arrays that only contains `id` entries. **Ex.:** `array<array<id>>` - Will only match an array containing arrays that only contains `id` entries.