getPriority() public méthode

public getPriority ( ) : integer
Résultat integer
 /**
  * @param ServiceDeliveryInterface $a
  * @param ServiceDeliveryInterface $b
  *
  * @return int
  */
 public static function sort(ServiceDeliveryInterface $a, ServiceDeliveryInterface $b)
 {
     if ($a->getPriority() === $b->getPriority()) {
         return 0;
     }
     return $a->getPriority() > $b->getPriority() ? -1 : 1;
 }