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.
*/
public ?int $statusCode;
* The url that is broken.
public string $crawledUrl;
* The url where the broken url was found.
public string $foundOnUrl;
public function __construct(array $attributes, $ohDear = null)
parent::__construct($attributes, $ohDear);
}