landrok/activitypub

View on GitHub
src/ActivityPhp/Type/Validator/HeightValidator.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

/*
 * This file is part of the ActivityPhp package.
 *
 * Copyright (c) landrok at github.com/landrok
 *
 * For the full copyright and license information, please see
 * <https://github.com/landrok/activitypub/blob/master/LICENSE>.
 */

namespace ActivityPhp\Type\Validator;

use ActivityPhp\Type\Core\Link;
use ActivityPhp\Type\Extended\Object\Document;
use ActivityPhp\Type\Extended\Object\Image;
use ActivityPhp\Type\Util;
use ActivityPhp\Type\ValidatorInterface;

/**
 * \ActivityPhp\Type\Validator\HeightValidator is a dedicated
 * validator for height attribute.
 */
class HeightValidator implements ValidatorInterface
{
    /**
     * Validate height value
     *
     * @param int    $value
     * @param mixed  $container An object
     */
    public function validate($value, $container): bool
    {
        // Validate that container is a Link, an Image or a Document
        Util::subclassOf($container, [Link::class, Image::class, Document::class], true);

        // Must be a non negative integer
        return Util::validateNonNegativeInteger($value);
    }
}