mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
28 lines
338 B
PHP
28 lines
338 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Iterator;
|
|
|
|
/**
|
|
* Class Row
|
|
*/
|
|
class Row
|
|
{
|
|
protected $data;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function process()
|
|
{
|
|
// do some fancy things here ...
|
|
}
|
|
}
|