Skip to content

Commit

Permalink
Merge pull request #10754 from nextcloud/automated/noid/master-update…
Browse files Browse the repository at this point in the history
…-nextcloud-ocp

[master] Update nextcloud/ocp dependency
  • Loading branch information
nickvergessen authored Oct 22, 2023
2 parents 2d44c59 + f7e1025 commit bfd0fbc
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<file name="tests/stubs/oc_comments_manager.php" />
<file name="tests/stubs/oc_core_command_base.php" />
<file name="tests/stubs/oc_hooks_emitter.php" />
<file name="tests/stubs/oca_circles.php" />
<file name="tests/stubs/GuzzleHttp_Exception_ClientException.php" />
<file name="tests/stubs/GuzzleHttp_Exception_ConnectException.php" />
<file name="tests/stubs/GuzzleHttp_Exception_ServerException.php" />
Expand Down
27 changes: 27 additions & 0 deletions tests/stubs/oca_circles.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

namespace OCA\Circles\Events {

use OCA\Circles\Model\Circle;
use OCA\Circles\Model\Member;
use OCP\EventDispatcher\Event;

class AddingCircleMemberEvent extends Event {
public function getCircle(): Circle {
}
public function getMember(): Member {
}
}

class CircleDestroyedEvent extends Event {
public function getCircle(): Circle {
}
}

class RemovingCircleMemberEvent extends Event {
public function getCircle(): Circle {
}
public function getMember(): Member {
}
}
}

0 comments on commit bfd0fbc

Please sign in to comment.