# fluent-cart/1.6.4/app/Http/Controllers/DataBackfillController.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 19 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Http/Controllers/DataBackfillController.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.4/raw/app/Http/Controllers/DataBackfillController.php
- Modified: 2026-07-09T14:48:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.6.4/code/app/Http/Controllers/DataBackfillController.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Http\Controllers;

use FluentCart\Database\DataBackfills;

class DataBackfillController extends Controller
{
    /**
     * Run pending one-shot data backfills within this request's budget.
     * The admin app silently re-calls this endpoint while the returned
     * status is 'running'; 'locked' means another request is already on it.
     */
    public function run()
    {
        return $this->sendSuccess(DataBackfills::processPending());
    }
}

```
