vpietri/magento2-developer-quickdevbar

View on GitHub
Service/Layout/Handle.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php


namespace ADM\QuickDevBar\Service\Layout;


use ADM\QuickDevBar\Api\ServiceInterface;

class Handle implements ServiceInterface
{

    private $handles;
    /**
     * @inheritDoc
     */
    public function pullData()
    {
        return $this->handles;
    }

    public function addLayoutHandles(array $getHandles)
    {
        $this->handles = $getHandles;
    }
}