function CommentStatisticsUnitTest::fetchObjectCallback

Same name and namespace in other branches
  1. 8.9.x core/modules/comment/tests/src/Unit/CommentStatisticsUnitTest.php \Drupal\Tests\comment\Unit\CommentStatisticsUnitTest::fetchObjectCallback()
  2. 10 core/modules/comment/tests/src/Unit/CommentStatisticsUnitTest.php \Drupal\Tests\comment\Unit\CommentStatisticsUnitTest::fetchObjectCallback()
  3. 11.x core/modules/comment/tests/src/Unit/CommentStatisticsUnitTest.php \Drupal\Tests\comment\Unit\CommentStatisticsUnitTest::fetchObjectCallback()

Return value callback for fetchObject() function on mocked object.

Return value

bool|string 'Something' on first, 'something-else' on second and FALSE for the other calls to function.

File

core/modules/comment/tests/src/Unit/CommentStatisticsUnitTest.php, line 110

Class

CommentStatisticsUnitTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21comment%21src%21CommentStatistics.php/class/CommentStatistics/9" title="CommentStatistics" class="local">\Drupal\comment\CommentStatistics</a> @group comment

Namespace

Drupal\Tests\comment\Unit

Code

public function fetchObjectCallback() {
    $this->calls_to_fetch++;
    switch ($this->calls_to_fetch) {
        case 1:
            return 'something';
        case 2:
            return 'something-else';
        default:
            return FALSE;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.