Skip to content

Instantly share code, notes, and snippets.

View kafkadev's full-sized avatar
🏠
Working from home

Gokhan Celik kafkadev

🏠
Working from home
View GitHub Profile
@kafkadev
kafkadev / abstract-referance.php
Last active December 21, 2016 18:05
Abract Referance
<?php
abstract class Perakende {
abstract public function KDV($urunKodu);
public function FiyatHesapla($fiyat, $urunKodu) {
return $fiyat + ($fiyat * $this->KDV($urunKodu));
}
}
@kafkadev
kafkadev / filename.php
Last active December 21, 2016 17:36
gist test description
<?php
/*
testlerimizi buraya yazıyoruz
*/
echo "testimiz";