ptejada/darkroom

View on GitHub
src/Utility/BoxInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Darkroom\Utility;

/**
 * Interface BoxInterface
 *
 * @package Darkroom\Utility
 */
interface BoxInterface
{
    /**
     * The width of the box in pixels
     *
     * @return int
     */
    public function width();

    /**
     * The height of the box in pixels
     *
     * @return int
     */
    public function height();
}