open-orchestra/open-orchestra-model-interface

View on GitHub
ModelInterface/Model/WorkflowProfileCollectionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ModelInterface\Model;

/**
 * Interface WorkflowProfileCollectionInterface
 */
interface WorkflowProfileCollectionInterface
{
    /**
     * @param WorkflowProfileInterface $profile
     */
    public function addProfile(WorkflowProfileInterface $profile);

    /**
     * @return ArrayCollection
     */
    public function getProfiles();
}