18 lines
220 B
PHP
18 lines
220 B
PHP
|
<?php
|
||
|
// @phpcs:ignoreFile
|
||
|
|
||
|
/**
|
||
|
* This class triggers an E_DEPRECATED notice.
|
||
|
*
|
||
|
* @see
|
||
|
*/
|
||
|
class PhpDeprecation implements \IteratorAggregate {
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function getIterator() {
|
||
|
}
|
||
|
|
||
|
}
|