これを変更して、配列ではなく 1 行のオブジェクトを返すようにするにはどうすればよいですか?
$slot = Model_Slots::find(array(
'where' => array(
array('datetime', '=', date('Y-m-d H:i:s', $s)),
array('club', '=', $club->id),
),
));
(現時点での解決策は、それに続くことです... $slot = ($slot[0]) ?: false;
、うーん!)