Google\Cloud\Tests\Vision\Annotation\LikelihoodTraitStub::l PHP Method

l() public method

public l ( $value, $strength )
    public function l($value, $strength)
    {
        return $this->likelihood($value, $strength);
    }

Usage Example

 /**
  * @expectedException InvalidArgumentException
  */
 public function testErr()
 {
     $t = new LikelihoodTraitStub();
     $t->l('foo', 'bar');
 }
LikelihoodTraitStub