Neos\ContentRepository\Domain\Service\PublishingService::getUnpublishedNodesCount PHP Метод

getUnpublishedNodesCount() публичный Метод

Returns the number of unpublished nodes contained in the given workspace
public getUnpublishedNodesCount ( Workspace $workspace ) : integer
$workspace Neos\ContentRepository\Domain\Model\Workspace
Результат integer
    public function getUnpublishedNodesCount(Workspace $workspace)
    {
        return $workspace->getNodeCount() - 1;
    }