Uncaught exception ApnsPHP_Push_Exception: No notifications queued to be sent

ApnsPHP を使っていると以下のエラーが出た。

Uncaught exception ApnsPHP_Push_Exception: No notifications queued to be sent

原因はデバイストークンの指定忘れ。
以下のようにコンストラクタで指定しなければならない。

<?php
$message = new \ApnsPHP_Message('device_token');

今回は以下のように何も指定しなかったからエラーになってしまった。

<?php
$message = new \ApnsPHP_Message();