コード例 #1
0
ファイル: Etude.php プロジェクト: N7-Consulting/Incipio
 private function trieDateSignature(DocType $a, DocType $b)
 {
     if ($a->getDateSignature() == $b->getDateSignature()) {
         return 0;
     } else {
         return $a->getDateSignature() < $b->getDateSignature() ? -1 : 1;
     }
 }