📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
vendor
/
binsoul
/
net-mqtt
/
src
📝
Subscription.php
← Geri Dön
<?php namespace BinSoul\Net\Mqtt; /** * Represents a subscription. */ interface Subscription { /** * Returns the topic filter. * * @return string */ public function getFilter(); /** * Returns the quality of service level. * * @return int */ public function getQosLevel(); /** * Returns a new subscription with the given topic filter. * * @param string $filter * * @return self */ public function withFilter($filter); /** * Returns a new subscription with the given quality of service level. * * @param int $level * * @return self */ public function withQosLevel($level); }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula