mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-09 05:04:28 +02:00
Rename classes
- Repository/Model Notification => Notify - Factory/Object Notification => Notification
This commit is contained in:
parent
b85511b00d
commit
0840938dff
12 changed files with 45 additions and 45 deletions
17
src/Collection/Notifies.php
Normal file
17
src/Collection/Notifies.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Collection;
|
||||
|
||||
use Friendica\BaseCollection;
|
||||
use Friendica\Model;
|
||||
|
||||
class Notifies extends BaseCollection
|
||||
{
|
||||
/**
|
||||
* @return Model\Notify
|
||||
*/
|
||||
public function current()
|
||||
{
|
||||
return parent::current();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue