for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PBurggraf\BinaryUtilities\EndianType;
/**
* @author Philip Burggraf <[email protected]>
*/
class BigEndian extends AbstractEndianType
{
public function applyEndianess(array $data): array
return $data;
}