1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 10:33:18 +01:00

Using late static binding for the service builder factory method. Closes #40

This commit is contained in:
Michael Dowling 2012-04-17 17:23:16 -07:00
parent f57169a2d6
commit e9fa0907bb

View File

@ -85,7 +85,7 @@ class ServiceBuilder implements \ArrayAccess
$client['class'] = str_replace('.', '\\', $client['class']);
}
return new self($config);
return new static($config);
}
/**