halfpastfouram/PHPChartJS

View on GitHub
src/ChartOwnedInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Halfpastfour\PHPChartJS;

/**
 * Class DataSet
 * @package Halfpastfour\PHPChartJS
 */
interface ChartOwnedInterface
{
    /**
     * @param ChartInterface $chart
     *
     * @return $this
     */
    public function setOwner(ChartInterface $chart);

    /**
     * @return ChartInterface
     */
    public function owner();
}