🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:MigrationRepositoryInterface.php
<?php namespace Illuminate\Database\Migrations; interface MigrationRepositoryInterface { /** * Get the completed migrations. * * @return string[] */ public function getRan(); /** * Get the list of migrations. * * @param int $steps * @return object{id: int, migration: string, batch: int}[] */ public function getMigrations($steps); /** * Get the list of the migrations by batch. * * @param int $batch * @return object{id: int, migration: string, batch: int}[] */ public function getMigrationsByBatch($batch); /** * Get the last migration batch. * * @return object{id: int, migration: string, batch: int}[] */ public function getLast(); /** * Get the completed migrations with their batch numbers. * * @return array<string, int> */ public function getMigrationBatches(); /** * Log that a migration was run. * * @param string $file * @param int $batch * @return void */ public function log($file, $batch); /** * Remove a migration from the log. * * @param object{id?: int, migration: string, batch?: int} $migration * @return void */ public function delete($migration); /** * Get the next migration batch number. * * @return int */ public function getNextBatchNumber(); /** * Create the migration repository data store. * * @return void */ public function createRepository(); /** * Determine if the migration repository exists. * * @return bool */ public function repositoryExists(); /** * Delete the migration repository data store. * * @return void */ public function deleteRepository(); /** * Set the information source to gather data. * * @param string $name * @return void */ public function setSource($name); }
Save Changes
Cancel
Create New File
Create New Folder