Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 1... Línea 1...
1
<?php
1
<?php
2
namespace Aws\Crypto\Polyfill;
2
namespace Aws\Crypto\Polyfill;
Línea 3... Línea 3...
3
 
3
 
4
/**
4
/**
5
 * Class ByteArray
-
 
6
 * @package Aws\Crypto\Polyfill
5
 * Class ByteArray
7
 */
6
 */
8
class ByteArray extends \SplFixedArray
7
class ByteArray extends \SplFixedArray
9
{
8
{
Línea 136... Línea 135...
136
     *
135
     *
137
     * @param int $index
136
     * @param int $index
138
     * @param int $newval
137
     * @param int $newval
139
     * @return void
138
     * @return void
140
     */
139
     */
-
 
140
    #[\ReturnTypeWillChange]
141
    public function offsetSet($index, $newval)
141
    public function offsetSet($index, $newval)
142
    {
142
    {
143
        parent::offsetSet($index, $newval & 0xff);
143
        parent::offsetSet($index, $newval & 0xff);
144
    }
144
    }