for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace frictionlessdata\datapackage;
class Resource
{
public static function load($descriptor, $basePath = null)
$descriptor = Utils::objectify($descriptor);
return Factory::resource($descriptor, $basePath);
}
public static function create($descriptor, $basePath = null)
$skipValidations = true;
return Factory::resource($descriptor, $basePath, $skipValidations);