for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace StringObject;
class AStringBuilder extends AString
{
public function replaceWhole($replacement = '')
self::testStringableObject($replacement);
$this->raw = (string) $replacement;
return $this;
}