<?php
class Polat
{
public function yaz($text)
{
echo $text;
return $this;
}

public function yaz2($text)
{
echo "\n" . $text;
return $this;
}
}

$a = new Polat();
$a->yaz('bir şeyler')->yaz2('deneme');
?>