You are here

function drupal_set_time_limit in Flysystem 8

Same name and namespace in other branches
  1. 3.x tests/src/Unit/Form/ConfigFormTest.php \Drupal\Tests\flysystem\Unit\Form\drupal_set_time_limit()
  2. 2.0.x tests/src/Unit/Form/ConfigFormTest.php \Drupal\Tests\flysystem\Unit\Form\drupal_set_time_limit()
  3. 3.0.x tests/src/Unit/Form/ConfigFormTest.php \Drupal\Tests\flysystem\Unit\Form\drupal_set_time_limit()
1 call to drupal_set_time_limit()
ConfigForm::copyFile in src/Form/ConfigForm.php
Copies a single file.

File

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

Namespace

Drupal\Tests\flysystem\Unit\Form

Code

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