MessagePack\Tests\Unit\BufferUnpackerTest::provideInsufficientData PHP Method

provideInsufficientData() public method

    public function provideInsufficientData()
    {
        return ['str' => ['', 1, 0], 'uint8' => ["�", 1, 0], 'uint16' => ["�", 2, 0], 'uint32' => ["�", 4, 0], 'uint64' => ["�", 8, 0], 'in8' => ["�", 1, 0], 'int16' => ["�", 2, 0], 'int32' => ["�", 4, 0], 'int64' => ["�", 8, 0], 'float32' => ["�", 4, 0], 'float64' => ["�", 8, 0], 'fixext1' => ["�", 1, 0], 'fixext2' => ["�", 2, 0], 'fixext4' => ["�", 4, 0], 'fixext8' => ["�", 8, 0], 'fixext16' => ["�", 16, 0], 'ext8' => ["�", 1, 0], 'ext16' => ["�", 2, 0], 'ext32' => ["�", 4, 0]];
    }