You are here

function drupal_set_time_limit in Flysystem 3.0.x

Same name and namespace in other branches
  1. 8 tests/src/Unit/Form/ConfigFormTest.php \Drupal\Tests\flysystem\Unit\Form\drupal_set_time_limit()
  2. 3.x tests/src/Unit/Form/ConfigFormTest.php \Drupal\Tests\flysystem\Unit\Form\drupal_set_time_limit()
  3. 2.0.x tests/src/Unit/Form/ConfigFormTest.php \Drupal\Tests\flysystem\Unit\Form\drupal_set_time_limit()

File

tests/src/Unit/Form/ConfigFormTest.php, line 277

Namespace

Drupal\Tests\flysystem\Unit\Form

Code

function drupal_set_time_limit($limit) {
  if ($limit !== 0) {
    throw new \Exception();
  }
}