lox / pheasant

A lightweight data mapper designed to take advantage of PHP 5.3+
http://getpheasant.com
MIT License
101 stars 21 forks source link

small glitch on getpheasant.com homepage #59

Closed jorisleker closed 10 years ago

jorisleker commented 11 years ago
// look up via magic finders
$post = Post::findOneByTitle('My Post');

should be:

$post = Post::oneByTitle('My Post');

(without find)