Skip to content
This repository has been archived by the owner on Sep 25, 2018. It is now read-only.

Commit

Permalink
ready for 4.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Enrico Fagnoni committed Jan 29, 2016
1 parent 2d27f50 commit 05d9983
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
filter:
excluded_paths:
- 'public/*'
- 'tests/*'
- 'test/*'
- 'vendor/*'
- 'samples/*'
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ Add following dependances to **composer.json** file in your project root:
"require": {
"botk/context": "*"
}
}</section>
<section>
}

### The Context class

Expand Down Expand Up @@ -128,7 +127,7 @@ Some validators shold be boring to write, here are a set of predefined shortcuts
Even with validator shortcuts, a call to getValue method can be too verbose, here are some shortcut you can use
for common task:

* getString($varName,$default = null):&nbsp; same as
* getString($varName,$default = null):&nbsp; same as
getValue($varName,$default, null, FILTER_SANITIZE_STRING);
* getURI($varName,$default = null):&nbsp; same as
getValue($varName,$default, self::STRING('/.+/'), FILTER_SANITIZE_URL)
Expand All @@ -139,8 +138,7 @@ The PagedResource class is a facility to manage the context of a resource whose
variables to drive pagination processing. It is a specialization of Context class and like Context should be
considered as a read-only data structure.

The resource paging context is inspired on W3C's Linked Data Platform Paging specifications .Here are some
imported definitions:
The resource paging context is inspired on W3C's Linked Data Platform Paging specifications .Here are some imported definitions:
<dl class="glossary"><dt><dfn>Paged resource</dfn></dt><dd>A resource&nbsp; whose representation may be too large to fit in a single HTTP response, for which a server
offers a sequence of single-page resources. A paged <var>P</var> is broken into a sequence of pages
(single-page resources) <var>P<sub>1</sub>, P<sub>2</sub>, ...,P<sub>n</sub></var>, the representation of
Expand Down

0 comments on commit 05d9983

Please sign in to comment.