mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 09:19:40 +01:00
26 lines
429 B
Plaintext
26 lines
429 B
Plaintext
<?php
|
|
namespace {
|
|
interface UnitEnum {
|
|
/** @return non-empty-list<static> */
|
|
public static function cases(): array;
|
|
}
|
|
}
|
|
|
|
namespace FTP {
|
|
final class Connection {}
|
|
}
|
|
|
|
namespace IMAP {
|
|
final class Connection {}
|
|
}
|
|
|
|
namespace LDAP {
|
|
final class Connection {}
|
|
final class Result {}
|
|
final class ResultEntry {}
|
|
}
|
|
|
|
namespace PSpell {
|
|
final class Config {}
|
|
final class Dictionary {}
|
|
} |