Phan: Fixing reference to Exceptions (#40027)

This commit is contained in:
Hannes Papenberg 2023-04-06 08:53:10 +02:00 committed by GitHub
parent 05b0aea808
commit 769ce07d31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 20 deletions

View File

@ -111,7 +111,7 @@ final class Categories extends Adapter
* @return boolean True on success.
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderDelete($context, $table)
{
@ -139,7 +139,7 @@ final class Categories extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterSave($context, $row, $isNew): void
{
@ -172,7 +172,7 @@ final class Categories extends Adapter
* @return boolean True on success.
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderBeforeSave($context, $row, $isNew)
{
@ -251,7 +251,7 @@ final class Categories extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
protected function index(Result $item)
{

View File

@ -122,7 +122,7 @@ final class Contacts extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterDelete($context, $table): void
{
@ -148,7 +148,7 @@ final class Contacts extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterSave($context, $row, $isNew): void
{
@ -185,7 +185,7 @@ final class Contacts extends Adapter
* @return boolean True on success.
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderBeforeSave($context, $row, $isNew)
{
@ -242,7 +242,7 @@ final class Contacts extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
protected function index(Result $item)
{

View File

@ -124,7 +124,7 @@ final class Content extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterDelete($context, $table): void
{
@ -153,7 +153,7 @@ final class Content extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterSave($context, $row, $isNew): void
{
@ -189,7 +189,7 @@ final class Content extends Adapter
* @return boolean True on success.
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderBeforeSave($context, $row, $isNew)
{
@ -246,7 +246,7 @@ final class Content extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
protected function index(Result $item)
{

View File

@ -120,7 +120,7 @@ final class Newsfeeds extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterDelete($context, $table): void
{
@ -149,7 +149,7 @@ final class Newsfeeds extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterSave($context, $row, $isNew): void
{
@ -185,7 +185,7 @@ final class Newsfeeds extends Adapter
* @return boolean True on success.
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderBeforeSave($context, $row, $isNew)
{
@ -242,7 +242,7 @@ final class Newsfeeds extends Adapter
* @return void
*
* @since 2.5
* @throws Exception on database error.
* @throws \Exception on database error.
*/
protected function index(Result $item)
{

View File

@ -99,7 +99,7 @@ final class Tags extends Adapter
* @return void
*
* @since 3.1
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterDelete($context, $table): void
{
@ -125,7 +125,7 @@ final class Tags extends Adapter
* @return void
*
* @since 3.1
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderAfterSave($context, $row, $isNew): void
{
@ -154,7 +154,7 @@ final class Tags extends Adapter
* @return boolean True on success.
*
* @since 3.1
* @throws Exception on database error.
* @throws \Exception on database error.
*/
public function onFinderBeforeSave($context, $row, $isNew)
{
@ -203,7 +203,7 @@ final class Tags extends Adapter
* @return void
*
* @since 3.1
* @throws Exception on database error.
* @throws \Exception on database error.
*/
protected function index(Result $item)
{