N0rthernL1ghts/polr-client

View on GitHub
src/Attributes/AttributesInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace NorthernLights\Client\Polr\Attributes;

/**
 * Interface AttributesInterface
 * @package NorthernLights\Client\Polr\Attributes
 */
interface AttributesInterface
{
    /**
     * Get assigned attributes
     *
     * @return array
     */
    public function getAttributes(): array;
}