Log files need to be made in advance to run this applications.
.
├── 1.initial
│ ├── main.php
│ └── test.log
├── 2.anonymous-function
│ ├── lib
│ │ └── Tail.php
│ ├── main.php
│ └── test.log
├── 3.interface
│ ├── lib
│ │ ├── RecordHandler.php
│ │ ├── SlackRecordHandler.php
│ │ └── Tail.php
│ ├── main.php
│ └── test.log
├── 4.inheritance
│ ├── lib
│ │ ├── SlackTail.php
│ │ └── Tail.php
│ ├── main.php
│ └── test.log
└── README.md
$ cd 1.initial
or
$ cd 2.anonymous-function
or
$ cd 3.inheritance
or
$ cd 4.interface
$ php main.php
$ echo Hello, World >> test.log