%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php
namespace Codeception\Step;
use Codeception\Lib\ModuleContainer;
use Codeception\Step as CodeceptionStep;
class Meta extends CodeceptionStep
{
public function run(ModuleContainer $container = null)
{
}
public function setTraceInfo($file, $line)
{
$this->file = $file;
$this->line = $line;
}
public function setPrefix($actor)
{
$this->prefix = $actor;
}
public function getArgumentsAsString($maxLength = 200)
{
$argumentBackup = $this->arguments;
$lastArgAsString = '';
$lastArg = end($this->arguments);
if (is_string($lastArg) && strpos($lastArg, "\n") !== false) {
$lastArgAsString = "\r\n " . str_replace("\n", "\n ", $lastArg);
array_pop($this->arguments);
}
$result = parent::getArgumentsAsString($maxLength) . $lastArgAsString;
$this->arguments = $argumentBackup;
return $result;
}
public function setFailed($failed)
{
$this->failed = $failed;
}
}