in src/FacebookAds/Logger/CurlLogger.php [110:121]
public static function getMethodFlag($method) {
switch ($method) {
case RequestInterface::METHOD_GET:
return static::METHOD_GET_FLAG;
case RequestInterface::METHOD_PUT:
return static::METHOD_PUT_FLAG;
case RequestInterface::METHOD_DELETE:
return static::METHOD_DELETE_FLAG;
}
return static::METHOD_DEFAULT_FLAG;
}