Ejemplo n.º 1
0
 public function testStripStartingSlash2()
 {
     $s = new StringObject("//http://www.webiny.com//");
     $s->stripStartingSlash()->stripTrailingSlash();
     $this->assertSame("http://www.webiny.com", $s->val());
 }