for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @property \Qualia\Client client
*/
abstract class TestCase extends PHPUnit_Framework_TestCase
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
{
protected function setUp()
parent::setUp();
// Initialize client
$this->client = new \Qualia\Client('597768e728d8f1508f6d9f62', 'cT6hCqyxD8MQ0k6gfYwWBt3lIMexpsLQ');
}
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.