PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
<?php namespace Illuminate\Database; use RuntimeException; class MultipleRecordsFoundException extends RuntimeException { /** * The number of records found. * * @var int */ public $count; /** * Create a new exception instance. * * @param int $count * @param int $code * @param \Throwable|null $previous * @return void */ public function __construct($count, $code = 0, $previous = null) { $this->count = $count; parent::__construct("$count records were found.", $code, $previous); } /** * Get the number of records found. * * @return int */ public function getCount() { return $this->count; } }
[-] ConfigurationUrlParser.php
[edit]
[-] QueryException.php
[edit]
[-] composer.json
[edit]
[+]
Connectors
[-] ConnectionInterface.php
[edit]
[+]
..
[-] ConnectionResolverInterface.php
[edit]
[-] Seeder.php
[edit]
[-] MultipleRecordsFoundException.php
[edit]
[+]
Query
[+]
Migrations
[-] DatabaseTransactionsManager.php
[edit]
[+]
Events
[-] RecordsNotFoundException.php
[edit]
[-] DetectsConcurrencyErrors.php
[edit]
[-] PostgresConnection.php
[edit]
[-] DatabaseServiceProvider.php
[edit]
[-] SqlServerConnection.php
[edit]
[-] MultipleColumnsSelectedException.php
[edit]
[+]
Eloquent
[-] Connection.php
[edit]
[-] LICENSE.md
[edit]
[+]
DBAL
[+]
PDO
[-] MigrationServiceProvider.php
[edit]
[+]
Console
[+]
Capsule
[-] DatabaseManager.php
[edit]
[-] Grammar.php
[edit]
[-] ConnectionResolver.php
[edit]
[-] DatabaseTransactionRecord.php
[edit]
[-] MySqlConnection.php
[edit]
[-] README.md
[edit]
[+]
Concerns
[-] SQLiteConnection.php
[edit]
[-] LazyLoadingViolationException.php
[edit]
[-] DetectsLostConnections.php
[edit]
[-] ClassMorphViolationException.php
[edit]
[+]
Schema