sixty-nine/php-cloud-lib

View on GitHub
src/SixtyNine/Cloud/Placer/PlacerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SixtyNine\Cloud\Placer;

use Imagine\Image\PointInterface;

interface PlacerInterface
{
    /**
     * @return PointInterface
     */
    function getFirstPlaceToTry();

    /**
     * @param PointInterface $current
     * @return PointInterface
     */
    function getNextPlaceToTry(PointInterface $current);
}