Completed
Push — master ( 64a44a...ce5e3e )
by Joao
04:39
created

Foo::bar()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 14
Code Lines 8

Duplication

Lines 14
Ratio 100 %

Importance

Changes 4
Bugs 0 Features 0
Metric Value
c 4
b 0
f 0
dl 14
loc 14
rs 9.4285
cc 2
eloc 8
nc 2
nop 1
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 4 and the first side effect is on line 2.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
require_once('vendor/autoload.php');
3
4 View Code Duplication
class Foo
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
5
{
6
// Method to be executed in a thread
7
    public function bar($t)
8
    {
9
        echo "Starting thread #$t" . PHP_EOL;
10
11
        sleep(1 * rand(1, 5));
12
        for ($i = 0; $i < 10; $i++) {
13
            echo "Hello from thread #$t, i=$i" . PHP_EOL;
14
            sleep(1);
15
        }
16
        echo "Ending thread #$t" . PHP_EOL;
17
18
        // Note: this line below require the file "config/cacheconfig.php" exists
19
        return "$t: [[[[[[" . time() . "]]]]]]";
20
    }
21
}
22
23
try {
24
    $t = array();
25
26
    $foo = new Foo();
27
28
    // Create the threads
29
    for ($i = 0; $i < 10; $i++) {
30
        // Create a new instance of the Thread class, pointing to "Foo" function
31
        $thr = new \ByJG\PHPThread\Thread([$foo, 'bar']);
32
33
        // Started the method "Foo" in a tread
34
        $thr->execute($i);
35
36
        // Save the thread reference to be manipulate
37
        $t[] = $thr;
38
    }
39
40
    $done = false;
41
42
    // It is important to check if all threads are done
43
    // otherwise will be terminate when the php script is finished;
44
    foreach ($t as $thread) {
45
        $thread->waitFinish();
46
    }
47
48
    // Note: this line below require the file "config/cacheconfig.php" exists
49
    foreach ($t as $thread) {
50
        echo "Result: " . $thread->getResult() . "\n";
51
    }
52
53
} catch (Exception $e) {
54
    echo 'Exception: ' . $e . PHP_EOL;
55
}
56