CakePHP5ではTable::find()の書き方がかわったようです。
Since 5.0.0: Using options array for the `find()` call is deprecated. Use named arguments instead.
一応、前の書き方でも動くようですが、Deprecationsになっちゃいますので、早めに直しておいたほうがいいですね。
// 以前の書き方
Table::find('all',$options);
// 新しい書き方
Table::fine(type:'all',options:$options);