phoenixrvd/oda

View on GitHub
src/Interfaces/Method.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace PhoenixRVD\ODA\Interfaces;

interface Method
{
    /**
     * Ruft die Accessor-Methode Auf.
     *
     * @param OdaObject $object
     * @param array     $attributes (optional)
     *
     * @return mixed
     */
    public function execute(OdaObject $object);
}