Tim Kelty

Results 323 comments of Tim Kelty

@cmalven my bad, you need a leading slash: ``` $this->run('/feed-me/feeds/queue', [1, 2, 3]) ```

@cmalven try an array with a single, comma-separated value: ``` class MyController extends yii\console\Controller { public function actionIndex() { return $this->run('/feed-me/feeds/queue', ['1,2,3']); } } ``` Seems to be working over...

Ah, yep. `$this->run` assumes calling from a console controller. > because I'm calling it from a widget In that case, you can just all the method directly: ``` (new \craft\feedme\console\controllers\FeedsController('feeds',...