Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / web / core / modules / system / tests / fixtures / update / drupal-8.without_automated_cron.php
1 <?php
2
3 /**
4  * @file
5  * Test fixture.
6  */
7
8 use Drupal\Core\Database\Database;
9
10 $connection = Database::getConnection();
11 $config = $connection;
12
13 $connection->merge('config')
14   ->condition('name', 'system.cron')
15   ->condition('collection', '')
16   ->fields([
17     'name' => 'system.cron',
18     'collection' => '',
19     'data' => serialize(['threshold' => ['autorun' => 0]]),
20   ])
21   ->execute();