MAXakaWIZARD/xls-writer

View on GitHub
src/Record/MsoDrawingGroup.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Xls\Record;

class MsoDrawingGroup extends AbstractRecord
{
    const NAME = 'MSODRAWINGGROUP';
    const ID = 0x00EB;

    public function getData($hexStrData)
    {
        $data = pack('H*', str_replace(' ', '', $hexStrData));

        return $this->getFullRecord($data);
    }
}