CakePHPの勉強にCoocbookで進めているのですがユーザーの処理を追加したら下記のエラーが出力されました。CakePHP2.7.3ではFlashComponentが無いのでしょうか?
Error: FlashComponent could not be found.
// app/Controller/AppController.php
class AppController extends Controller {
    //...
    public $components = array(
        'Flash',
        'Auth' => array(
            'loginRedirect' => array(
                'controller' => 'posts',
                'action' => 'index'
            ),
            'logoutRedirect' => array(
                'controller' => 'pages',
                'action' => 'display',
                'home'
            ),
            'authenticate' => array(
                'Form' => array(
                    'passwordHasher' => 'Blowfish'
                )
            )
        )
    );
    public function beforeFilter() {
        $this->Auth->allow('index', 'view');
    }
    //...
}