cakephp źródło danych Wywołanie niezdefiniowanej metody

Stworzyłem prostydatasource:

// app/Model/Datasource/FeedSource.php

App::uses('DataSource', 'Model/Datasource');

class FeedSource extends DataSource {
    public function abcd() {
        echo 'Hello World!';
    }
}

w moimdatabase.php:

public $feed = array(
    'datasource' => 'FeedSource'
);

I wFeeda Model:

class Feeda extends AppModel {
    public $useTable = false;
    public $useDbConfig = 'feed';
}

wlist kontroler:

$this->loadModel('Feeda');
$this->Feeda->abcd();

Ale zwraca błąd krytyczny:

Error: Call to undefined method FeedSource::query()

Jak to rozwiązać?

Dzięki...

questionAnswers(1)

yourAnswerToTheQuestion