<?php
require_once 'TextDecoratorAbstract.php';

class 
UpperCaseText extends TextDecoratorAbstract
{
    public function 
getText()
    {
        
$str parent::getText();
        
$str strtoupper($str);

        return 
$str;
    }
}