Source of: /ch14/example.14-4.php
<?php

interface Deliverable
{
    function 
caseCount();
    function 
totalWeight();
}
?>