for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OhDear\PhpSdk\Resources;
class BrokenLink extends ApiResource
{
/**
* The status code the site responded with.
*
* @var int|null
*/
public $statusCode;
* The url that is broken.
* @var string
public $crawledUrl;
* The url where the broken url was found.
public $foundOnUrl;
public function __construct(array $attributes, $ohDear = null)
parent::__construct($attributes, $ohDear);
}