Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total  
 
 
 
CRAP  
 
<?php
namespace TriNetAssess;
/**
 * Interface to provide cost calculations.
 */
interface CostCalculationsInterface
{
    /**
     * Get the total cost per month
     *
     * @return float total cost per month
     */
    public function getCostPerMonth();
    /**
     * Get the total cost per year
     *
     * @return float total cost per year
     */
    public function getCostPerYear();