diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-05-13 10:15:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 10:15:31 -0600 |
commit | 0dbdc6dd286065bbc21dc24b7ad83107c877a400 (patch) | |
tree | 613243996380162a4595514bd7ba131177482c7e /id-id | |
parent | 872840d680b51290ff22941cef721b984154919d (diff) |
[php/id] rename function (#4942)
Diffstat (limited to 'id-id')
-rw-r--r-- | id-id/php-id.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/id-id/php-id.html.markdown b/id-id/php-id.html.markdown index 45306475..331b78a8 100644 --- a/id-id/php-id.html.markdown +++ b/id-id/php-id.html.markdown @@ -762,9 +762,9 @@ class KelasInduk { } public static function coba() { // kata kunci "self" merujuk pada method yang berada dalam satu kelas - self::who(); + self::siapa(); // kata kunci "static" merujuk pada method yang berada di kelas dimana method itu dijalankan - static::who(); + static::siapa(); } } |