Skip to content

Commit

Permalink
1.20 freeze.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniele-orlando committed Feb 21, 2016
1 parent a6a5558 commit c01fee8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion documents/Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Just because awesomenesses are never enough, ->query() supports CSS Selectors.
[@] Internal:
* PSR-0/4 compliance.
* FluidXml.php is still there for people not using Composer/PSR-0/4 loaders.
* FluidInsertionHandler refactoring.
* refactoring.


1.13: (2016-01-24)
Expand Down
6 changes: 3 additions & 3 deletions documents/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ string. Just because awesomenesses are never enough, `->query()` supports **CSS

# FluidXML
<img src="https://bytebucket.org/daniele_orlando/hosting/raw/master/Servo_logo.png?nocache=1" height="64px" alt="Servo-PHP Logo"/>
<span>           </span>
<span>      </span>
<img src="https://bytebucket.org/daniele_orlando/hosting/raw/master/Fluidxml_logo.png?nocache=1" height="64px" alt="FluidXML Logo"/>

FluidXML is a PHP library designed to manipulate XML documents with a **concise** and **fluent** API.<br/>
Expand Down Expand Up @@ -208,12 +208,12 @@ $book->query('//chapters')
```

Whether some queries are too complex to express with XPath/CSS,<br/>
filtering is your friend.
**filtering** is your friend.

```php
$book->query('//chapters')
->filter(function($i, $node) {
return $node->getAttribute('id') % 2 === 0;
return $i % 2 === 0;
})
->attr('even');
```
Expand Down

0 comments on commit c01fee8

Please sign in to comment.