What do I use in place of namespace for older versions of php 5.2 and earlier using this code below it gives an error Parse error: syntax error, unexpected T_STRING
<?php
namespace Aws\Tests\CloudWatch;
use Aws\CloudSearch\CloudSearchClient;
class CloudSearchClientTest extends \Guzzle\Tests\GuzzleTestCase
{
/**
* @covers Aws\CloudSearch\CloudSearchClient::factory
*/
public function testFactoryInitializesClient()
{
$client = CloudSearchClient::factory(array(
'key' => 'foo',
'secret' => 'bar',
'region' => 'us-east-1'
));
$this->assertInstanceOf('Aws\Common\Signature\SignatureV4', $this->readAttribute($client, 'signature'));
$this->assertInstanceOf('Aws\Common\Credentials\Credentials', $client->getCredentials());
$this->assertEquals('https://cloudsearch.us-east-1.amazonaws.com', $client->getBaseUrl());
}
}